Current Path : /storage/v11800/whatthehell-new/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/whatthehell-new/.db.sql
-- MariaDB dump 10.19  Distrib 10.6.9-MariaDB, for debian-linux-gnu (aarch64)
--
-- Host: localhost    Database: whatthehell-newdb
-- ------------------------------------------------------
-- Server version	10.6.9-MariaDB-1:10.6.9+maria~ubu2004

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

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

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

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

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

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

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

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

--
-- Table structure for table `wp_e_notes`
--

DROP TABLE IF EXISTS `wp_e_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_notes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `route_url` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `route_post_id` bigint(20) unsigned DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `element_id` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `author_id` bigint(20) unsigned DEFAULT NULL,
  `author_display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `position` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `is_public` tinyint(1) NOT NULL DEFAULT 1,
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `route_url_index` (`route_url`(191)),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `parent_id_index` (`parent_id`),
  KEY `author_id_index` (`author_id`),
  KEY `status_index` (`status`),
  KEY `is_resolved_index` (`is_resolved`),
  KEY `is_public_index` (`is_public`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `last_activity_at_index` (`last_activity_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_notes`
--

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

--
-- Table structure for table `wp_e_notes_users_relations`
--

DROP TABLE IF EXISTS `wp_e_notes_users_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_notes_users_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`),
  KEY `note_id_index` (`note_id`),
  KEY `user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_notes_users_relations`
--

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

--
-- Table structure for table `wp_e_submissions`
--

DROP TABLE IF EXISTS `wp_e_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `hash_id` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) unsigned NOT NULL,
  `referer` varchar(500) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `referer_title` varchar(300) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `element_id` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `form_name` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_submissions`
--

LOCK TABLES `wp_e_submissions` WRITE;
/*!40000 ALTER TABLE `wp_e_submissions` DISABLE KEYS */;
INSERT INTO `wp_e_submissions` VALUES (1,'submission','703fb6d2-b57c-4e85-8c4a-8692a5c10813',2,338,'https://whatthehell-new.in8.cdn-alpha.com/elementor-landing-page-338/','Elementor Landing Page #338','31582075','Booking Form',0,1,'252.114.216.250','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36',1,1,'new',1,'{\"edit_post_id\":\"338\"}','2023-04-05 08:42:02','2023-04-05 08:55:06','2023-04-05 08:42:02','2023-04-05 08:55:06');
/*!40000 ALTER TABLE `wp_e_submissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_e_submissions_actions_log`
--

DROP TABLE IF EXISTS `wp_e_submissions_actions_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_submissions_actions_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL,
  `action_name` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action_label` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_submissions_actions_log`
--

LOCK TABLES `wp_e_submissions_actions_log` WRITE;
/*!40000 ALTER TABLE `wp_e_submissions_actions_log` DISABLE KEYS */;
INSERT INTO `wp_e_submissions_actions_log` VALUES (1,1,'email','Email','success',NULL,'2023-04-05 08:42:02','2023-04-05 08:42:02','2023-04-05 08:42:02','2023-04-05 08:42:02');
/*!40000 ALTER TABLE `wp_e_submissions_actions_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_e_submissions_values`
--

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

--
-- Dumping data for table `wp_e_submissions_values`
--

LOCK TABLES `wp_e_submissions_values` WRITE;
/*!40000 ALTER TABLE `wp_e_submissions_values` DISABLE KEYS */;
INSERT INTO `wp_e_submissions_values` VALUES (1,1,'name','Shivendra'),(2,1,'email','test@gmail.com'),(3,1,'field_1f3565c','7017848108');
/*!40000 ALTER TABLE `wp_e_submissions_values` 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=1874 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','https://whatthehell-new.in8.cdn-alpha.com','yes'),(2,'home','https://whatthehell-new.in8.cdn-alpha.com','yes'),(3,'blogname','My WordPress','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','wp@dxpsites.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','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:122:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s: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:45:\"elementskit-content/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"elementskit-content/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"elementskit-content/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"elementskit-content/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"elementskit-content/(.+?)/embed/?$\";s:52:\"index.php?elementskit_content=$matches[1]&embed=true\";s:38:\"elementskit-content/(.+?)/trackback/?$\";s:46:\"index.php?elementskit_content=$matches[1]&tb=1\";s:46:\"elementskit-content/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&paged=$matches[2]\";s:53:\"elementskit-content/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&cpage=$matches[2]\";s:42:\"elementskit-content/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementskit_content=$matches[1]&page=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=144&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:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:2;s:31:\"elementor-pro/elementor-pro.php\";i:3;s:23:\"elementor/elementor.php\";i:4;s:37:\"elementskit-lite/elementskit-lite.php\";i:5;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:6;s:75:\"timeline-widget-addon-for-elementor/timeline-widget-addon-for-elementor.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','hello-elementor','yes'),(41,'stylesheet','hello-elementor','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','57155','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','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','144','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1694431717','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','53496','yes'),(100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'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'),(104,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:11:{i:1681421318;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:1681428518;a:3:{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:1681428644;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1681471718;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:1681471844;a:3:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:1681471846;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:1681477123;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:1681990118;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1691612182;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1694235781;a:1:{s:34:\"elementor_1_elementor_updater_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:43:\"elementor_1_elementor_updater_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(123,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1678884737;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','no'),(126,'recovery_keys','a:0:{}','yes'),(127,'https_detection_errors','a:0:{}','yes'),(139,'wp_cli_login','{\"endpoint\":\"ac7c12be\",\"version\":\"^1.2\"}','yes'),(143,'ai1wmue_plugin_key','1bebc005-bc23-4932-8b3f-1b4b72ee066a','yes'),(164,'finished_updating_comment_type','1','yes'),(168,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:14:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.56\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:266:\"<ul class=\"description\"><li>Remove upload limits</li><li>Use on any number of websites that you own</li><li>Restore backup from server</li><li>Reset Hub: Reset tools for efficient site management new</li><li>WP CLI commands included</li><li>Premium support</li></ul>\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:509;s:10:\"downloaded\";i:50188;s:14:\"update_message\";s:215:\"You may be a victim of software counterfeiting. The license installed on your extension is likely non-genuine or pirated. For assistance, contact us at <a href=\"mailto:support@servmask.com\">support@servmask.com</a>.\";}}','yes'),(169,'recently_activated','a:0:{}','yes'),(174,'current_theme','Hello Elementor','yes'),(175,'theme_mods_hello-elementor','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:4;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(176,'theme_switched','','yes'),(177,'hello_theme_version','2.8.1','yes'),(184,'eael_setup_wizard','init','yes'),(185,'eael_save_settings','a:62:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";i:1;s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";i:1;s:10:\"ninja-form\";i:1;s:9:\"formstack\";i:1;s:12:\"gravity-form\";i:1;s:12:\"caldera-form\";i:1;s:7:\"wpforms\";i:1;s:10:\"fluentform\";i:1;s:8:\"typeform\";i:1;s:24:\"betterdocs-category-grid\";i:1;s:23:\"betterdocs-category-box\";i:1;s:22:\"betterdocs-search-form\";i:1;s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:24:\"crowdfundly-organization\";i:1;s:24:\"crowdfundly-all-campaign\";i:1;s:27:\"crowdfundly-single-campaign\";i:1;s:12:\"woo-checkout\";i:1;s:8:\"woo-cart\";i:1;s:14:\"login-register\";i:1;s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";i:1;s:20:\"woo-product-carousel\";i:1;s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";i:1;s:18:\"interactive-circle\";i:1;s:14:\"better-payment\";i:1;s:11:\"nft-gallery\";i:1;s:16:\"business-reviews\";i:1;s:9:\"promotion\";i:1;s:9:\"custom-js\";i:1;s:16:\"reading-progress\";i:1;s:16:\"table-of-content\";i:1;s:15:\"post-duplicator\";i:1;s:13:\"scroll-to-top\";i:1;}','yes'),(187,'eael_version','5.6.1','yes'),(188,'hfe_plugin_is_activated','yes','yes'),(189,'elementor_active_kit','11','yes'),(190,'elementor_font_display','swap','yes'),(193,'elementor_version','3.15.2','yes'),(194,'elementor_install_history','a:4:{s:6:\"3.11.5\";i:1678967564;s:6:\"3.12.0\";i:1680178065;s:6:\"3.12.1\";i:1680519617;s:6:\"3.15.2\";i:1691643299;}','yes'),(195,'elementor_events_db_version','1.0.0','no'),(197,'_hfe_db_version','1.6.34','yes'),(198,'elementor_onboarded','1','yes'),(199,'bsf_analytics_installed_time','1678885184','no'),(200,'_elementor_installed_time','1678885184','yes'),(201,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(202,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:71:\"6 Best WordPress Image Optimization Plugins of 2024 (+Real Image Tests)\";s:7:\"excerpt\";s:116:\"Explore the top 6 WordPress image optimization plugins of 2024 for faster site speed and better SEO with real tests.\";s:7:\"created\";i:1712656602;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:126:\"https://elementor.com/blog/image-optimization-plugins/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:84:\"Introducing Elementor 3.20: New Display Condition Features, Performance Improvements\";s:7:\"excerpt\";s:189:\"Version 3.20 introduces exciting new features that enhance the flexibility of Display Conditions. This version also improves the loading time of your site’s frontend and backend, and more\";s:7:\"created\";i:1710845895;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:167:\"https://elementor.com/blog/elementor-320-display-conditions-enhacments-peformance-improvements/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.19: Display Conditions, Role Permissions in the Element Manager, and More\";s:7:\"excerpt\";s:230:\"Create dynamic visitor experiences, customize your teammates’ widget panels, protect forms from spam submissions, generate variations in the template library, and use URLs from the open web as a reference to generate containers.\";s:7:\"created\";i:1707315304;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/elementor-319-display-conditions-akismet-integration/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(210,'elementskit-lite__banner_last_check','1714308230','yes'),(211,'elementskit-lite__banner_data','O:8:\"stdClass\":10:{s:8:\"10011221\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011221;s:5:\"title\";s:33:\"Wpmet Ramadan Sale 2024 Own Pages\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1710115200;s:3:\"end\";i:1711929600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/ramadan24-notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:538:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Ramadan sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $180 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011220\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011220;s:5:\"title\";s:33:\"Wpmet Ramadan Sale 2024 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1710028800;s:3:\"end\";i:1711929600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/ramadan24-notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:538:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Ramadan sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $180 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011059\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011059;s:5:\"title\";s:34:\"Wpmet Holiday Notice Ownpages 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1702512000;s:3:\"end\";i:1704412800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:30:\"https://wpmet.com/hol23-notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:538:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">holiday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $180 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011058\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011058;s:5:\"title\";s:35:\"Wpmet Holiday Notice Dashboard 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1702512000;s:3:\"end\";i:1704412800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:30:\"https://wpmet.com/hol23-notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:538:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">holiday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $180 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011039\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011039;s:5:\"title\";s:32:\"Wpmet BFCM Notice Dashboard 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1700611200;s:3:\"end\";i:1701907200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:36:\"https://wpmet.com/notice/blackfriday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:543:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Black friday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $240 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 40% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/12/40-OFF-getgenie.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011038\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011038;s:5:\"title\";s:31:\"Wpmet BFCM Notice Own Page 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1700611200;s:3:\"end\";i:1701907200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:36:\"https://wpmet.com/notice/blackfriday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:543:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Black friday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $240 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 40% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/12/40-OFF-getgenie.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010872\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010872;s:5:\"title\";s:33:\"Wpmet Notice Halloween 23 Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1698192000;s:3:\"end\";i:1699574400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/notice/hallo23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:540:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Halloween sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $210 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:65:\"https://api.wpmet.com/auth/wp-content/uploads/2023/04/genie-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010871\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010871;s:5:\"title\";s:35:\"Wpmet Notice Halloween 23 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1698192000;s:3:\"end\";i:1699574400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/notice/hallo23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:540:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Halloween sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $210 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:65:\"https://api.wpmet.com/auth/wp-content/uploads/2023/04/genie-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}}','yes'),(212,'elementskit-lite_install_date','2023-03-15 01:03:56','yes'),(213,'elementor_unfiltered_files_upload','1','yes'),(214,'elementor_log','a:30:{s:32:\"2cc3fadf832176ee6086ee0cb2692535\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:100:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:7:\"\0*\0line\";i:175;s:7:\"\0*\0date\";s:19:\"2023-03-15 13:04:31\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:21:\"Undefined index: data\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2023-03-15 13:04:31\";i:1;s:19:\"2023-03-21 19:19:47\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:21:\"Undefined index: data\";s:4:\"file\";s:100:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:4:\"line\";i:175;s:5:\"trace\";b:1;}}s:32:\"ead4b1de00952c7208169053d0c1d515\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:108:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/includes/template-library/sources/local.php\";s:7:\"\0*\0line\";i:1394;s:7:\"\0*\0date\";s:19:\"2023-03-15 13:04:34\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:24:\"Undefined index: content\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-15 13:04:34\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:24:\"Undefined index: content\";s:4:\"file\";s:108:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/includes/template-library/sources/local.php\";s:4:\"line\";i:1394;s:5:\"trace\";b:1;}}s:32:\"216bb8f7ebb2810780af4cac9ce1d9d6\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:4:\"2932\";s:7:\"\0*\0file\";s:99:\"https://wthtest.cdn-sigma.com/wp-content/plugins/elementor/assets/js/new-template.min.js?ver=3.11.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2023-03-16 10:01:29\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:51:\"elementor_new_template_form_controls is not defined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-16 10:01:29\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1678960889\";s:7:\"message\";s:51:\"elementor_new_template_form_controls is not defined\";s:3:\"url\";s:99:\"https://wthtest.cdn-sigma.com/wp-content/plugins/elementor/assets/js/new-template.min.js?ver=3.11.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:4:\"2932\";}}s:32:\"9a3f7e1e2ba036a33ad3c18898f03df4\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:87:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/base/document.php\";s:7:\"\0*\0line\";i:1560;s:7:\"\0*\0date\";s:19:\"2023-03-17 05:24:33\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:26:\"Undefined index: thumbnail\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-17 05:24:33\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:26:\"Undefined index: thumbnail\";s:4:\"file\";s:87:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/base/document.php\";s:4:\"line\";i:1560;s:5:\"trace\";b:1;}}s:32:\"7fa94379b1eff2b3c1970c07060d3116\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"105427\";s:7:\"\0*\0file\";s:94:\"https://wthtest.cdn-sigma.com/wp-content/plugins/elementor/assets/js/web-cli.min.js?ver=3.11.5\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-03-18 09:59:17\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:37:\"Routes: `library/sections` not found.\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-18 09:59:17\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1679133557\";s:7:\"message\";s:37:\"Routes: `library/sections` not found.\";s:3:\"url\";s:94:\"https://wthtest.cdn-sigma.com/wp-content/plugins/elementor/assets/js/web-cli.min.js?ver=3.11.5\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"105427\";}}s:32:\"0ba1339baab9a9ad74f915463f7f4735\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:84:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2023-03-21 07:37:40\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:142:\"file_put_contents(/storage/v11218/wthtest/public_html/wp-content/uploads/elementor/css/post-144.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-21 07:37:40\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:142:\"file_put_contents(/storage/v11218/wthtest/public_html/wp-content/uploads/elementor/css/post-144.css): failed to open stream: Permission denied\";s:4:\"file\";s:84:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"1a48d9e9962fdab7a00bd435a4e1ad19\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:92:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/includes/managers/image.php\";s:7:\"\0*\0line\";i:108;s:7:\"\0*\0date\";s:19:\"2023-03-21 19:19:10\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-21 19:19:10\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:92:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/includes/managers/image.php\";s:4:\"line\";i:108;s:5:\"trace\";b:1;}}s:32:\"5385f92eaa75d23b0b73ba41bfc2ef66\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"51824\";s:7:\"\0*\0file\";s:240:\"https://wthtest.cdn-sigma.com/wp-admin/load-scripts.php?c=1&amp;loadchunk_0=jquery-core,jquery-migrate,regenerator-runtime,wp-polyfill,underscore,backbone,jquery-ui-core,jquery-ui-mouse,wp-api-request,wp-&amp;loadchunk_1=hooks&amp;ver=6.1.1\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2023-03-22 09:56:07\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:65:\"Cannot read properties of undefined (reading &#039;replace&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2023-03-22 09:56:07\";i:1;s:19:\"2023-03-23 08:31:24\";i:2;s:19:\"2023-03-23 10:42:15\";i:3;s:19:\"2023-03-23 10:42:48\";i:4;s:19:\"2023-03-23 10:52:16\";i:5;s:19:\"2023-03-23 11:18:12\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1679478967\";s:7:\"message\";s:55:\"Cannot read properties of undefined (reading \'replace\')\";s:3:\"url\";s:240:\"https://wthtest.cdn-sigma.com/wp-admin/load-scripts.php?c=1&amp;loadchunk_0=jquery-core,jquery-migrate,regenerator-runtime,wp-polyfill,underscore,backbone,jquery-ui-core,jquery-ui-mouse,wp-api-request,wp-&amp;loadchunk_1=hooks&amp;ver=6.1.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"51824\";}}s:32:\"3779369d37314cb8f18c94ef237734eb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-30 07:25:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-30 07:25:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"41d5aae4fb330200392d1839243865b5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-30 07:25:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-30 07:25:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"a1a76e801c5db19508aca5655be70d8c\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:95:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/files/uploads-manager.php\";s:7:\"\0*\0line\";i:610;s:7:\"\0*\0date\";s:19:\"2023-03-30 07:25:55\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:134:\"unlink(/storage/v11218/wthtest/public_html/wp-content/uploads/elementor/tmp/6412e91e29a32/templates/faqs-page.json): Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2023-03-30 07:25:55\";i:1;s:19:\"2023-04-02 15:45:11\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:134:\"unlink(/storage/v11218/wthtest/public_html/wp-content/uploads/elementor/tmp/6412e91e29a32/templates/faqs-page.json): Permission denied\";s:4:\"file\";s:95:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/files/uploads-manager.php\";s:4:\"line\";i:610;s:5:\"trace\";b:1;}}s:32:\"3a3e0b8273cb60a3a315848f7a6f96c2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-30 12:07:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-30 12:07:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a45f064602c26c7032fb2176692bd3ed\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-30 12:07:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-30 12:07:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"e5bb99f346a32e20865a1d3f62ce5f41\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-30 12:07:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-30 12:07:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"65e11aebc5d84217f1d5f1008017d4e5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-30 12:07:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.11.5\";s:2:\"to\";s:6:\"3.12.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-30 12:07:44\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.11.5\";s:2:\"to\";s:6:\"3.12.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"72bff446bbb094efe626d998a2456b98\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-02 15:45:10\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-02 15:45:10\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"f49329a4fa33a8165c0296890786c3bc\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-02 15:45:10\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-02 15:45:10\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"486b27b971577636081660eb7b0b25c4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-02 15:45:11\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.0\";s:2:\"to\";s:6:\"3.12.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-02 15:45:11\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.0\";s:2:\"to\";s:6:\"3.12.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"f3348b83c633d0c110f71558035bf877\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-03 11:00:11\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-03 11:00:11\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"05c8b8a364bdde5d1eabdaebc19127ab\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-03 11:00:12\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-03 11:00:12\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"8b962cea5977439edd2e17cf44c00d47\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-03 11:00:16\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-03 11:00:16\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"b5cfb182a85d0976954e00c8f1d31ead\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-03 11:00:16\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.0\";s:2:\"to\";s:6:\"3.12.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-03 11:00:16\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.0\";s:2:\"to\";s:6:\"3.12.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d55de6076e638378df1f32198588cb14\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:95:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/files/uploads-manager.php\";s:7:\"\0*\0line\";i:614;s:7:\"\0*\0date\";s:19:\"2023-04-03 11:00:28\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:97:\"rmdir(/storage/v11218/wthtest/public_html/wp-content/uploads/elementor/tmp/): Directory not empty\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-03 11:00:28\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:97:\"rmdir(/storage/v11218/wthtest/public_html/wp-content/uploads/elementor/tmp/): Directory not empty\";s:4:\"file\";s:95:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/files/uploads-manager.php\";s:4:\"line\";i:614;s:5:\"trace\";b:1;}}s:32:\"b103915b71cd001dc3cc43dbc653db08\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:80:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/wp-api.php\";s:7:\"\0*\0line\";i:26;s:7:\"\0*\0date\";s:19:\"2023-04-06 12:59:21\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1039:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /storage/v11218/wthtest/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api-&gt;get_plugins()\n#1 /storage/v11218/wthtest/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_with_header()\n#2 /storage/v11218/wthtest/public_html/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_to_check()\n#3 /storage/v11218/wthtest/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module-&gt;get_plugins_to_check()\n#4 /storage/v11218/wthtest/public_html/wp-includes/class-wp-hook.php(308): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;Elementor\\Modules\\Compati\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-06 12:59:21\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1024:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /storage/v11218/wthtest/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api->get_plugins()\n#1 /storage/v11218/wthtest/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_with_header()\n#2 /storage/v11218/wthtest/public_html/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_to_check()\n#3 /storage/v11218/wthtest/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module->get_plugins_to_check()\n#4 /storage/v11218/wthtest/public_html/wp-includes/class-wp-hook.php(308): Elementor\\Modules\\CompatibilityTag\\Base_Module->Elementor\\Modules\\Compati\";s:4:\"file\";s:80:\"/storage/v11218/wthtest/public_html/wp-content/plugins/elementor/core/wp-api.php\";s:4:\"line\";i:26;s:5:\"trace\";b:1;}}s:32:\"5ae58986d08253fbff5dc79f0e7bb25d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-03 11:15:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.1\";s:2:\"to\";s:6:\"3.12.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-03 11:15:56\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.1\";s:2:\"to\";s:6:\"3.12.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"01e6fc86735d1d7ec6bdaba032b71180\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-10 04:54:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-10 04:54:58\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"78b04b8ad3612cafb7b1242c7d87f87e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-10 04:54:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-10 04:54:58\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"03ee4502c55043604ed0b3571fe60f61\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-10 04:54:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-10 04:54:58\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"13ace6459137f4cf9d698ececd87ffd5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-10 04:54:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.1\";s:2:\"to\";s:6:\"3.15.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-10 04:54:58\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.1\";s:2:\"to\";s:6:\"3.15.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"95c0ae8846cd0f44f0cb71e0e4097b9a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-09-09 05:02:51\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.2\";s:2:\"to\";s:6:\"3.15.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-09-09 05:02:51\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.2\";s:2:\"to\";s:6:\"3.15.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(219,'elementor_import_sessions','a:2:{s:13:\"6411c2c8da36f\";a:9:{s:10:\"session_id\";s:13:\"6411c2c8da36f\";s:9:\"kit_title\";s:46:\"Runda - Creative Agency Elementor Template Kit\";s:8:\"kit_name\";s:46:\"Runda - Creative Agency Elementor Template Kit\";s:13:\"kit_thumbnail\";s:0:\"\";s:10:\"kit_source\";s:5:\"local\";s:7:\"user_id\";i:1;s:15:\"start_timestamp\";i:1678885603;s:13:\"end_timestamp\";i:1678885609;s:7:\"runners\";a:2:{s:13:\"site-settings\";a:3:{s:15:\"previous_kit_id\";i:0;s:13:\"active_kit_id\";i:5;s:15:\"imported_kit_id\";i:6;}s:23:\"elements-default-values\";a:0:{}}}s:13:\"6413f93187d95\";a:9:{s:10:\"session_id\";s:13:\"6413f93187d95\";s:9:\"kit_title\";s:46:\"Runda - Creative Agency Elementor Template Kit\";s:8:\"kit_name\";s:46:\"Runda - Creative Agency Elementor Template Kit\";s:13:\"kit_thumbnail\";s:0:\"\";s:10:\"kit_source\";s:5:\"local\";s:7:\"user_id\";i:1;s:15:\"start_timestamp\";i:1679030584;s:13:\"end_timestamp\";i:1679030676;s:7:\"runners\";a:3:{s:13:\"site-settings\";a:3:{s:15:\"previous_kit_id\";i:5;s:13:\"active_kit_id\";i:6;s:15:\"imported_kit_id\";i:11;}s:9:\"templates\";a:1:{s:19:\"template_conditions\";a:0:{}}s:23:\"elements-default-values\";a:0:{}}}}','no'),(220,'elementor_previous_kit','6','yes'),(221,'elementskit-lite__stories_last_check','1714308229','yes'),(222,'elementskit-lite__stories_data','O:8:\"stdClass\":10:{s:8:\"10011250\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011250;s:5:\"title\";s:42:\"How to Write a Service Description with AI\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:63:\"https://getgenie.ai/how-to-write-a-service-description-with-ai/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011249\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011249;s:5:\"title\";s:62:\"How To Start A Blog with AI: The Proven Methods For Efficiency\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:41:\"https://getgenie.ai/start-a-blog-with-ai/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011248\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011248;s:5:\"title\";s:66:\"GetGenie vs NeuronWriter vs Surfer SEO: Which One is Right for You\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:59:\"https://getgenie.ai/getgenie-vs-neuronwriter-vs-surfer-seo/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011246\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011246;s:5:\"title\";s:48:\"5 Best ShopLentor Alternatives You Should Check!\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:42:\"https://wpmet.com/shoplentor-alternatives/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011245\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011245;s:5:\"title\";s:71:\"10 Best WordPress Quiz Form Builder Plugins in 2024 (Ranked & Compared)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:59:\"https://wpmet.com/best-wordpress-quiz-form-builder-plugins/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011244\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011244;s:5:\"title\";s:35:\"Best WordPress YouTube Feed Plugins\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:49:\"https://wpmet.com/wordpress-youtube-feed-plugins/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011242\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011242;s:5:\"title\";s:65:\"How to Rank for Google Quick Answers and Maximize Organic Traffic\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:57:\"https://getgenie.ai/how-to-rank-for-google-quick-answers/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011241\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011241;s:5:\"title\";s:47:\"Top SEO Trends in 2024: Boost Your SERP Ranking\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:31:\"https://getgenie.ai/seo-trends/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011240\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011240;s:5:\"title\";s:57:\"How to Find Untapped Keywords to Discover SEO Hidden Gems\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:43:\"https://getgenie.ai/find-untapped-keywords/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011239\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011239;s:5:\"title\";s:55:\"ElementsKit vs Plus Addons: Which One is Right for You?\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:45:\"https://wpmet.com/elementskit-vs-plus-addons/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','yes'),(237,'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'),(238,'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'),(239,'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'),(284,'elementor_pro_version','3.11.6','yes'),(285,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286,'_elementor_pro_installed_time','1678967564','yes'),(287,'elementor_submissions_db_version','5','yes'),(303,'elementor_fonts_manager_font_types','a:0:{}','yes'),(304,'elementor_fonts_manager_fonts','a:0:{}','yes'),(305,'elementor_custom_icon_sets_config','a:0:{}','yes'),(311,'_elementor_pro_api_requests_lock','a:2:{s:11:\"get_version\";i:1714308226;s:16:\"get_license_data\";i:1681304781;}','yes'),(336,'elementor_pro_theme_builder_conditions','a:0:{}','yes'),(389,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(390,'elementskit_options','a:1:{s:17:\"megamenu_settings\";a:1:{s:15:\"menu_location_4\";a:1:{s:10:\"is_enabled\";i:0;}}}','yes'),(737,'twae-free-v','1.4.2','yes'),(738,'twae-type','FREE','yes'),(739,'twae-installDate','2023-03-22 08:27:02','yes'),(825,'_elementor_pro_editor_activate_license_notice_dismissed','1714308361','yes'),(1004,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:15:\"wp@dxpsites.com\";s:7:\"version\";s:3:\"6.2\";s:9:\"timestamp\";i:1680161186;}','no'),(1038,'elementor_connect_site_key','8a6c2e9ab753d0850732dfb363bd20a7','yes'),(1039,'elementor_allow_tracking','yes','yes'),(1040,'elementor_tracker_last_send','1681417895','yes'),(1048,'elementor_notes_db_version','5','yes'),(1375,'ai1wm_secret_key','5FzVJDnAcpA2','yes'),(1376,'ai1wm_backups_labels','a:0:{}','yes'),(1377,'ai1wm_sites_links','a:0:{}','yes'),(1378,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:403:\"<a href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/ai1wm-backups/whatthehell-new.in8.cdn-alpha.com-20230504-185148-4q8bwi.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"whatthehell-new.in8.cdn-alpha.com\" download=\"whatthehell-new.in8.cdn-alpha.com-20230504-185148-4q8bwi.wpress\"><span>Download whatthehell-new.in8.cdn-alpha.com</span><em>Size: 159 MB</em></a>\";}','yes'),(1379,'swift_performance_plugin_organizer','a:0:{}','yes'),(1380,'jetpack_active_modules','a:0:{}','yes'),(1411,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":4,\"critical\":0}','yes'),(1413,'_site_transient_ai1wm_last_check_for_updates','1714308225','no'),(1417,'_transient_doing_cron','1719262229.8332540988922119140625','yes'),(1561,'db_upgraded','','yes'),(1585,'elementor_controls_usage','a:4:{s:7:\"wp-page\";a:15:{s:5:\"image\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:17;s:5:\"align\";i:4;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:5;s:19:\"image_border_radius\";i:2;s:18:\"image_border_width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:12:{s:8:\"_padding\";i:2;s:8:\"_z_index\";i:1;s:14:\"_element_width\";i:2;s:21:\"_element_width_tablet\";i:2;s:21:\"_element_width_mobile\";i:2;s:21:\"_element_custom_width\";i:2;s:9:\"_position\";i:2;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:2;s:9:\"_offset_y\";i:2;s:21:\"_offset_orientation_v\";i:1;s:7:\"_margin\";i:4;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:147;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:21:\"space_between_widgets\";i:22;s:12:\"_inline_size\";i:130;s:16:\"content_position\";i:36;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:17:{s:21:\"background_background\";i:45;s:16:\"background_image\";i:27;s:19:\"background_position\";i:18;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:27;s:16:\"background_color\";i:16;s:27:\"background_hover_background\";i:18;s:22:\"background_hover_image\";i:18;s:21:\"background_hover_size\";i:6;s:27:\"background_hover_transition\";i:6;s:25:\"background_gradient_angle\";i:4;s:40:\"background_slideshow_transition_duration\";i:2;s:36:\"background_slideshow_background_size\";i:2;s:40:\"background_slideshow_background_position\";i:2;s:28:\"background_slideshow_gallery\";i:3;s:18:\"background_color_b\";i:2;s:21:\"background_color_stop\";i:1;}s:14:\"section_border\";a:8:{s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:8;s:13:\"border_border\";i:18;s:12:\"border_width\";i:18;s:12:\"border_color\";i:18;s:19:\"border_hover_border\";i:5;s:13:\"border_radius\";i:4;s:18:\"border_hover_width\";i:3;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:53;s:11:\"_element_id\";i:1;s:6:\"margin\";i:59;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:51;s:15:\"animation_delay\";i:34;s:16:\"animation_mobile\";i:4;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:32;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:30;s:5:\"align\";i:15;s:11:\"icon_indent\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:10;s:12:\"align_mobile\";i:8;s:12:\"align_tablet\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:20:{s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_line_height\";i:3;s:17:\"button_text_color\";i:19;s:16:\"background_color\";i:19;s:11:\"hover_color\";i:13;s:29:\"button_background_hover_color\";i:4;s:25:\"button_hover_border_color\";i:4;s:13:\"border_border\";i:26;s:12:\"border_width\";i:32;s:12:\"border_color\";i:5;s:13:\"border_radius\";i:23;s:12:\"text_padding\";i:32;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:4;s:21:\"typography_font_style\";i:1;s:26:\"typography_text_decoration\";i:1;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:9;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:12;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:77;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:12:{s:13:\"content_width\";i:36;s:3:\"gap\";i:12;s:6:\"height\";i:6;s:13:\"custom_height\";i:8;s:16:\"content_position\";i:4;s:6:\"_title\";i:10;s:8:\"html_tag\";i:2;s:15:\"column_position\";i:5;s:6:\"layout\";i:9;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:8:\"overflow\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:46;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:12:{s:21:\"background_background\";i:30;s:16:\"background_color\";i:16;s:16:\"background_image\";i:16;s:21:\"background_attachment\";i:11;s:19:\"background_position\";i:5;s:15:\"background_size\";i:10;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:25:\"background_gradient_angle\";i:1;s:15:\"background_xpos\";i:1;s:17:\"background_repeat\";i:1;s:36:\"background_slideshow_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:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:47;s:6:\"margin\";i:21;s:7:\"z_index\";i:3;}s:19:\"_section_responsive\";a:3:{s:20:\"reverse_order_tablet\";i:3;s:20:\"reverse_order_mobile\";i:5;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:15:\"animation_delay\";i:2;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:14;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:94;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:94;s:11:\"header_size\";i:33;s:5:\"align\";i:53;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:11:\"title_color\";i:23;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:25:\"typography_text_transform\";i:9;s:21:\"typography_font_style\";i:7;s:26:\"typography_text_decoration\";i:7;s:22:\"typography_line_height\";i:10;s:25:\"typography_letter_spacing\";i:7;s:23:\"typography_word_spacing\";i:3;s:10:\"blend_mode\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:10;s:7:\"_margin\";i:63;s:8:\"_z_index\";i:1;}s:15:\"section_effects\";a:4:{s:10:\"_animation\";i:33;s:18:\"animation_duration\";i:2;s:16:\"_animation_delay\";i:16;s:17:\"_animation_tablet\";i:2;}s:15:\"_section_border\";a:3:{s:13:\"_border_width\";i:24;s:13:\"_border_color\";i:21;s:14:\"_border_border\";i:6;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:48;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:45;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:26;s:10:\"text_color\";i:14;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:21:\"typography_font_style\";i:4;s:26:\"typography_text_decoration\";i:4;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:44;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:2;s:17:\"_animation_tablet\";i:1;s:16:\"_animation_delay\";i:2;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:4;s:10:\"icon_space\";i:4;s:9:\"icon_size\";i:4;}s:17:\"section_style_box\";a:1:{s:10:\"text_align\";i:4;}s:21:\"section_style_content\";a:21:{s:18:\"title_bottom_space\";i:4;s:11:\"title_color\";i:4;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:31:\"title_typography_text_transform\";i:4;s:27:\"title_typography_font_style\";i:4;s:32:\"title_typography_text_decoration\";i:4;s:28:\"title_typography_line_height\";i:4;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:4;s:34:\"description_typography_font_weight\";i:4;s:37:\"description_typography_text_transform\";i:4;s:33:\"description_typography_font_style\";i:4;s:38:\"description_typography_text_decoration\";i:4;s:34:\"description_typography_line_height\";i:4;s:31:\"title_typography_letter_spacing\";i:4;s:37:\"description_typography_letter_spacing\";i:4;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:14;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:14;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:11;s:4:\"size\";i:14;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:7:\"_margin\";i:6;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:23;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:23;s:5:\"align\";i:18;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:23;s:3:\"gap\";i:20;s:5:\"color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:13;s:16:\"_animation_delay\";i:11;}}}}s:7:\"counter\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:13;s:5:\"title\";i:13;s:13:\"ending_number\";i:13;s:6:\"suffix\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:13;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:7:{s:12:\"number_color\";i:3;s:28:\"typography_number_typography\";i:3;s:29:\"typography_number_font_family\";i:3;s:27:\"typography_number_font_size\";i:3;s:29:\"typography_number_font_weight\";i:3;s:29:\"typography_number_line_height\";i:3;s:30:\"typography_number_word_spacing\";i:3;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:6:{s:16:\"social_icon_list\";i:2;s:5:\"shape\";i:2;s:7:\"columns\";i:2;s:14:\"columns_mobile\";i:2;s:12:\"align_mobile\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:2;s:18:\"icon_primary_color\";i:2;s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;s:12:\"icon_spacing\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:17:\"hfe-search-button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:2:{s:6:\"layout\";i:1;s:11:\"placeholder\";i:1;}}s:5:\"style\";a:3:{s:19:\"section_input_style\";a:4:{s:23:\"input_placeholder_color\";i:1;s:22:\"input_background_color\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_button_style\";a:1:{s:23:\"button_background_color\";i:1;}s:18:\"section_close_icon\";a:2:{s:10:\"text_color\";i:1;s:21:\"hover_close_icon_text\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:3:{s:11:\"text_indent\";i:6;s:10:\"icon_color\";i:5;s:9:\"icon_size\";i:5;}s:18:\"section_text_style\";a:2:{s:10:\"text_color\";i:5;s:16:\"text_color_hover\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_tablet\";i:4;}}}}}s:4:\"page\";a:16:{s:5:\"image\";a:2:{s:5:\"count\";i:19;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:19;s:5:\"align\";i:4;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:5;s:19:\"image_border_radius\";i:2;s:18:\"image_border_width\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:12:{s:8:\"_padding\";i:2;s:8:\"_z_index\";i:1;s:14:\"_element_width\";i:2;s:21:\"_element_width_tablet\";i:2;s:21:\"_element_width_mobile\";i:2;s:21:\"_element_custom_width\";i:2;s:9:\"_position\";i:2;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:2;s:9:\"_offset_y\";i:2;s:21:\"_offset_orientation_v\";i:1;s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:144;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:21:\"space_between_widgets\";i:19;s:12:\"_inline_size\";i:127;s:16:\"content_position\";i:32;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:18:{s:21:\"background_background\";i:48;s:16:\"background_image\";i:30;s:19:\"background_position\";i:18;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:30;s:16:\"background_color\";i:18;s:15:\"background_ypos\";i:1;s:27:\"background_hover_background\";i:21;s:22:\"background_hover_image\";i:21;s:21:\"background_hover_size\";i:9;s:27:\"background_hover_transition\";i:9;s:25:\"background_gradient_angle\";i:3;s:40:\"background_slideshow_transition_duration\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:28:\"background_slideshow_gallery\";i:1;s:18:\"background_color_b\";i:2;s:21:\"background_color_stop\";i:1;}s:14:\"section_border\";a:8:{s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:8;s:13:\"border_border\";i:20;s:12:\"border_width\";i:20;s:12:\"border_color\";i:20;s:19:\"border_hover_border\";i:7;s:18:\"border_hover_width\";i:5;s:13:\"border_radius\";i:4;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:59;s:11:\"_element_id\";i:1;s:6:\"margin\";i:57;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:53;s:15:\"animation_delay\";i:35;s:16:\"animation_mobile\";i:4;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:32;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:31;s:5:\"align\";i:24;s:11:\"icon_indent\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:11;s:12:\"align_mobile\";i:10;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:19:{s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:17:\"button_text_color\";i:9;s:16:\"background_color\";i:15;s:11:\"hover_color\";i:4;s:29:\"button_background_hover_color\";i:4;s:25:\"button_hover_border_color\";i:4;s:13:\"border_border\";i:25;s:12:\"border_width\";i:32;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:26;s:12:\"text_padding\";i:32;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:3;s:21:\"typography_font_style\";i:1;s:26:\"typography_text_decoration\";i:1;s:25:\"typography_letter_spacing\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:11;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:80;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:12:{s:13:\"content_width\";i:35;s:3:\"gap\";i:12;s:6:\"height\";i:6;s:13:\"custom_height\";i:8;s:16:\"content_position\";i:4;s:6:\"_title\";i:10;s:8:\"html_tag\";i:2;s:15:\"column_position\";i:5;s:6:\"layout\";i:12;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:42;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:31;s:16:\"background_color\";i:10;s:16:\"background_image\";i:21;s:21:\"background_attachment\";i:8;s:19:\"background_position\";i:13;s:15:\"background_size\";i:17;s:15:\"background_ypos\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:57;s:6:\"margin\";i:23;s:7:\"z_index\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:15:\"animation_delay\";i:2;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:2;s:20:\"reverse_order_mobile\";i:4;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:12;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:102;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:102;s:11:\"header_size\";i:42;s:5:\"align\";i:60;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:11:\"title_color\";i:20;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:25:\"typography_text_transform\";i:9;s:21:\"typography_font_style\";i:7;s:26:\"typography_text_decoration\";i:7;s:22:\"typography_line_height\";i:10;s:25:\"typography_letter_spacing\";i:7;s:23:\"typography_word_spacing\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:10;s:7:\"_margin\";i:62;s:8:\"_z_index\";i:1;}s:15:\"section_effects\";a:4:{s:10:\"_animation\";i:47;s:18:\"animation_duration\";i:2;s:16:\"_animation_delay\";i:16;s:17:\"_animation_tablet\";i:2;}s:15:\"_section_border\";a:3:{s:13:\"_border_width\";i:23;s:13:\"_border_color\";i:20;s:14:\"_border_border\";i:3;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:52;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:49;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:26;s:10:\"text_color\";i:13;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:21:\"typography_font_style\";i:4;s:26:\"typography_text_decoration\";i:4;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:47;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:3;s:17:\"_animation_tablet\";i:1;s:16:\"_animation_delay\";i:3;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:4;s:10:\"icon_space\";i:4;s:9:\"icon_size\";i:4;}s:17:\"section_style_box\";a:1:{s:10:\"text_align\";i:4;}s:21:\"section_style_content\";a:21:{s:18:\"title_bottom_space\";i:4;s:11:\"title_color\";i:4;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:31:\"title_typography_text_transform\";i:4;s:27:\"title_typography_font_style\";i:4;s:32:\"title_typography_text_decoration\";i:4;s:28:\"title_typography_line_height\";i:4;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:4;s:34:\"description_typography_font_weight\";i:4;s:37:\"description_typography_text_transform\";i:4;s:33:\"description_typography_font_style\";i:4;s:38:\"description_typography_text_decoration\";i:4;s:34:\"description_typography_line_height\";i:4;s:31:\"title_typography_letter_spacing\";i:4;s:37:\"description_typography_letter_spacing\";i:4;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:20;s:5:\"align\";i:12;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:17;s:4:\"size\";i:20;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:7:\"_margin\";i:12;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:24;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:24;s:5:\"align\";i:18;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:24;s:3:\"gap\";i:21;s:5:\"color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:14;s:16:\"_animation_delay\";i:12;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"counter\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:10;s:5:\"title\";i:10;s:13:\"ending_number\";i:10;s:6:\"suffix\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:10;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:7:{s:12:\"number_color\";i:3;s:28:\"typography_number_typography\";i:3;s:29:\"typography_number_font_family\";i:3;s:27:\"typography_number_font_size\";i:3;s:29:\"typography_number_font_weight\";i:3;s:29:\"typography_number_line_height\";i:3;s:30:\"typography_number_word_spacing\";i:3;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:6:{s:16:\"social_icon_list\";i:2;s:5:\"shape\";i:2;s:7:\"columns\";i:2;s:14:\"columns_mobile\";i:2;s:12:\"align_mobile\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:2;s:18:\"icon_primary_color\";i:2;s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;s:12:\"icon_spacing\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:17:\"hfe-search-button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:2:{s:6:\"layout\";i:1;s:11:\"placeholder\";i:1;}}s:5:\"style\";a:3:{s:19:\"section_input_style\";a:4:{s:23:\"input_placeholder_color\";i:1;s:22:\"input_background_color\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_button_style\";a:1:{s:23:\"button_background_color\";i:1;}s:18:\"section_close_icon\";a:2:{s:10:\"text_color\";i:1;s:21:\"hover_close_icon_text\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:17:\"section_map_style\";a:6:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_contrast\";i:1;s:20:\"css_filters_saturate\";i:1;s:15:\"css_filters_hue\";i:1;s:28:\"css_filters_hover_css_filter\";i:1;s:16:\"hover_transition\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:7;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:7;}s:18:\"section_icon_style\";a:3:{s:11:\"text_indent\";i:7;s:10:\"icon_color\";i:5;s:9:\"icon_size\";i:5;}s:18:\"section_text_style\";a:2:{s:10:\"text_color\";i:5;s:16:\"text_color_hover\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_tablet\";i:4;}}}}}s:12:\"landing-page\";a:12:{s:5:\"image\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:5;s:5:\"align\";i:3;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:11:{s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;s:14:\"_element_width\";i:2;s:21:\"_element_width_tablet\";i:2;s:21:\"_element_width_mobile\";i:2;s:21:\"_element_custom_width\";i:2;s:9:\"_position\";i:2;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:2;s:9:\"_offset_y\";i:2;s:21:\"_offset_orientation_v\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:32;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:21:\"space_between_widgets\";i:19;s:12:\"_inline_size\";i:15;s:16:\"content_position\";i:15;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:16:\"background_color\";i:6;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:14;s:11:\"_element_id\";i:1;s:6:\"margin\";i:12;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:15:\"animation_delay\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:3;s:5:\"align\";i:3;s:11:\"icon_indent\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:19:{s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:25:\"button_hover_border_color\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:13:\"border_radius\";i:3;s:12:\"text_padding\";i:3;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:3;s:21:\"typography_font_style\";i:1;s:26:\"typography_text_decoration\";i:1;s:25:\"typography_letter_spacing\";i:3;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:12:{s:13:\"content_width\";i:12;s:3:\"gap\";i:12;s:6:\"height\";i:6;s:13:\"custom_height\";i:8;s:16:\"content_position\";i:4;s:6:\"_title\";i:10;s:8:\"html_tag\";i:2;s:15:\"column_position\";i:5;s:6:\"layout\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:5;s:16:\"background_image\";i:2;s:21:\"background_attachment\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:14;s:6:\"margin\";i:10;s:7:\"z_index\";i:2;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:12;s:11:\"header_size\";i:4;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:11:\"title_color\";i:12;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:25:\"typography_text_transform\";i:9;s:21:\"typography_font_style\";i:7;s:26:\"typography_text_decoration\";i:7;s:22:\"typography_line_height\";i:10;s:25:\"typography_letter_spacing\";i:7;s:23:\"typography_word_spacing\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:10;s:8:\"_z_index\";i:1;}s:15:\"section_effects\";a:4:{s:10:\"_animation\";i:6;s:18:\"animation_duration\";i:2;s:16:\"_animation_delay\";i:4;s:17:\"_animation_tablet\";i:2;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:4;s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:21:\"typography_font_style\";i:4;s:26:\"typography_text_decoration\";i:4;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:1;s:17:\"_animation_tablet\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:4;s:10:\"icon_space\";i:4;s:9:\"icon_size\";i:4;}s:17:\"section_style_box\";a:1:{s:10:\"text_align\";i:4;}s:21:\"section_style_content\";a:21:{s:18:\"title_bottom_space\";i:4;s:11:\"title_color\";i:4;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:31:\"title_typography_text_transform\";i:4;s:27:\"title_typography_font_style\";i:4;s:32:\"title_typography_text_decoration\";i:4;s:28:\"title_typography_line_height\";i:4;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:4;s:34:\"description_typography_font_weight\";i:4;s:37:\"description_typography_text_transform\";i:4;s:33:\"description_typography_font_style\";i:4;s:38:\"description_typography_text_decoration\";i:4;s:34:\"description_typography_line_height\";i:4;s:31:\"title_typography_letter_spacing\";i:4;s:37:\"description_typography_letter_spacing\";i:4;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;s:5:\"color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:7:\"counter\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:3;s:5:\"title\";i:3;s:13:\"ending_number\";i:3;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:7:{s:12:\"number_color\";i:3;s:28:\"typography_number_typography\";i:3;s:29:\"typography_number_font_family\";i:3;s:27:\"typography_number_font_size\";i:3;s:29:\"typography_number_font_weight\";i:3;s:29:\"typography_number_line_height\";i:3;s:30:\"typography_number_word_spacing\";i:3;}}}}}s:7:\"section\";a:14:{s:5:\"image\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:9;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:2;s:15:\"hover_animation\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_tablet\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:5;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:103;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:103;s:16:\"content_position\";i:17;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:3;s:11:\"hide_tablet\";i:2;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:34;s:6:\"margin\";i:37;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:37;s:15:\"animation_delay\";i:25;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:16:{s:21:\"background_background\";i:37;s:16:\"background_image\";i:28;s:19:\"background_position\";i:16;s:15:\"background_size\";i:26;s:16:\"background_color\";i:10;s:28:\"background_slideshow_gallery\";i:4;s:36:\"background_slideshow_background_size\";i:2;s:40:\"background_slideshow_background_position\";i:2;s:27:\"background_hover_background\";i:18;s:22:\"background_hover_image\";i:18;s:21:\"background_hover_size\";i:6;s:27:\"background_hover_transition\";i:6;s:21:\"background_color_stop\";i:2;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:3;s:40:\"background_slideshow_transition_duration\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:12;s:12:\"border_width\";i:12;s:12:\"border_color\";i:12;s:13:\"border_radius\";i:4;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:23;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:17;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:5;s:10:\"text_color\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:22;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:52;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:10;s:13:\"content_width\";i:25;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:31;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:5;s:15:\"animation_delay\";i:4;}s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:29;s:6:\"margin\";i:12;s:7:\"z_index\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:5;s:20:\"reverse_order_mobile\";i:5;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:19;s:16:\"background_image\";i:11;s:19:\"background_position\";i:2;s:15:\"background_size\";i:9;s:16:\"background_color\";i:10;s:18:\"background_color_b\";i:2;s:23:\"background_color_b_stop\";i:2;s:25:\"background_gradient_angle\";i:2;s:21:\"background_attachment\";i:6;s:36:\"background_slideshow_background_size\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:69;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:69;s:5:\"align\";i:47;s:11:\"header_size\";i:25;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:50;s:8:\"_padding\";i:8;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:24;s:13:\"_border_color\";i:23;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:24;s:16:\"_animation_delay\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:10:\"blend_mode\";i:3;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:6:{s:16:\"social_icon_list\";i:4;s:5:\"shape\";i:4;s:7:\"columns\";i:4;s:14:\"columns_mobile\";i:4;s:12:\"align_mobile\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:4;s:18:\"icon_primary_color\";i:4;s:9:\"icon_size\";i:4;s:12:\"icon_padding\";i:4;s:12:\"icon_spacing\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}}}}s:17:\"hfe-search-button\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:2:{s:6:\"layout\";i:2;s:11:\"placeholder\";i:2;}}s:5:\"style\";a:3:{s:19:\"section_input_style\";a:4:{s:23:\"input_placeholder_color\";i:2;s:22:\"input_background_color\";i:2;s:12:\"border_width\";i:2;s:13:\"border_radius\";i:2;}s:20:\"section_button_style\";a:1:{s:23:\"button_background_color\";i:1;}s:18:\"section_close_icon\";a:2:{s:10:\"text_color\";i:1;s:21:\"hover_close_icon_text\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:18;s:5:\"align\";i:15;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:18;s:3:\"gap\";i:18;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:11;s:16:\"_animation_delay\";i:8;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:26;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:25;s:5:\"align\";i:13;s:13:\"selected_icon\";i:11;s:4:\"link\";i:1;s:12:\"align_mobile\";i:1;s:12:\"align_tablet\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:16:{s:13:\"border_radius\";i:17;s:12:\"text_padding\";i:26;s:12:\"border_width\";i:26;s:13:\"border_border\";i:23;s:17:\"button_text_color\";i:15;s:16:\"background_color\";i:15;s:11:\"hover_color\";i:10;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:12:\"border_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;s:15:\"hover_animation\";i:9;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:16:\"_animation_delay\";i:3;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:10;}}}}s:15:\"navigation-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:1:{s:4:\"menu\";i:1;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:5:{s:7:\"pointer\";i:1;s:14:\"animation_text\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:2:{s:25:\"color_dropdown_item_hover\";i:1;s:23:\"dropdown_divider_border\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:15;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:9;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:9;s:4:\"size\";i:9;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:7:\"counter\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:7;s:5:\"title\";i:7;s:13:\"ending_number\";i:7;s:6:\"suffix\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:7;}}}}}}','no'),(1589,'elementor_pro_remote_info_api_data_3.11.6','a:2:{s:7:\"timeout\";i:1714351426;s:5:\"value\";s:216640:\"{\"stable_version\":\"3.21.1\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:203527:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.21.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"\",\"download_link\":\"\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"\",\"download_link\":\"\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}','no'),(1590,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1719262249;s:7:\"checked\";a:4:{s:15:\"hello-elementor\";s:5:\"2.8.1\";s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:1:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.1.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.1.0.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(1608,'elementor_1_elementor_updater_batch_200caa7fe6e3ae497bd288682fe0','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),(1609,'_elementor_global_css','a:6:{s:4:\"time\";i:1694235776;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(1610,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:14:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:15:\"navigation-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"divider\";a:2:{s:7:\"content\";s:4311:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:19:\"elementskit-heading\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:20:\"elementskit-icon-box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:1379:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:21:\"timeline-widget-addon\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"counter\";a:2:{s:7:\"content\";s:808:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:11:\"google_maps\";a:2:{s:7:\"content\";s:247:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:17:\"hfe-search-button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.3\";}}}}','yes'),(1794,'wp_attachment_pages_enabled','1','yes'),(1797,'_site_transient_timeout_browser_5e705226acd7a97aa6ee95ab188632d6','1714913028','no'),(1798,'_site_transient_browser_5e705226acd7a97aa6ee95ab188632d6','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"123.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(1799,'_site_transient_timeout_php_check_2f5acf219326a8bc5331ee302b9812f4','1714913029','no'),(1800,'_site_transient_php_check_2f5acf219326a8bc5331ee302b9812f4','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(1801,'_transient_timeout_elementor_remote_info_api_data_3.21.3','1714351431','no');
INSERT INTO `wp_options` VALUES (1802,'_transient_elementor_remote_info_api_data_3.21.3','a:4:{s:9:\"timestamp\";s:10:\"1714305859\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(1803,'can_compress_scripts','0','yes'),(1804,'_elementor_notifications_data','a:2:{s:7:\"timeout\";i:1714311937;s:5:\"value\";s:8282:\"[{\"id\":\"display-conditions-dynamic-content-3.20\",\"title\":\"Display Conditions for Dynamic Content\",\"description\":\"Transform your single post and page templates into dynamic designs that fit their content by setting display conditions based on Dynamic Tags including native WordPress Custom Fields.\",\"topic\":\"New in Elementor Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/dynamic-content-pro-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-320-display-conditions-enhacments-peformance-improvements\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"display-conditions-or-logic-3.20\",\"title\":\"Connect Display Conditions - OR Logic\",\"description\":\"Create condition groups of one or more conditions and connect them with the OR logic to display an element when either groups conditions are met.\",\"topic\":\"New in Elementor Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/display-conditions-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-320-display-conditions-enhacments-peformance-improvements\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"display-conditions-dynamic-content-3.20\",\"title\":\"Display Content on Your Terms: Decide When, Where, and by Who the Content is Viewed\",\"description\":\"Tailor the content on your page to visitors based on various rules to create a powerful experience.\",\"topic\":\"New in Elementor Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/display-conditions-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-320-display-conditions-enhacments-peformance-improvements\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-dispaly-conditions\\/\"},{\"id\":\"display-conditions-or-logic-3.20\",\"title\":\"Discover the Professional Way to Create Dynamic Content Websites\",\"description\":\"All the tools you need to turn the content you store on WordPress into pixel perfect websites that maintain a consistent, professional design.\",\"topic\":\"Dynamic Content\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/dynamic-content-3.20.gif\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/youtu.be\\/QSpCwj5dl5g?si=OpSNnnIyqCSOPzTF\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-dynamic-content\\/\"},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"element-manager-permissions-3.19\",\"title\":\"Streamline Collaboration by Setting Permissions to Widgets in the Element Manager\",\"description\":\"Customize the widgets displayed in the Widget Panel for each user based on their assigned roles.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/element-manager-role-permissions-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"element-manager-permissions-3.19\",\"title\":\"Streamline Collaboration by Setting Permissions to Widgets in the Element Manager\",\"description\":\"Customize the widgets displayed in the Widget Panel for each user based on their assigned roles.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/element-manager-role-permissions-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-element-manager-permission\\/\"},{\"id\":\"akismet-3.19\",\"title\":\"Protect Forms From Spam by Seamlessly Integrating Akismet Spam Filter\",\"description\":\"Akismet works in the background, using AI technology to detect spam with 99.9 percent accuracy without any additional interactions required by your visitors.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/akismet-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"akismet-3.19\",\"title\":\"Protect Forms From Spam by Seamlessly Integrating Akismet Spam Filter\",\"description\":\"Akismet works in the background, using AI technology to detect spam with 99.9 percent accuracy without any additional interactions required by your visitors.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/akismet-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-akismet\\/\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"ai-variations-in-template-library-3.19\",\"title\":\"Inspire Your Creation with Web-Based Container Generation\",\"description\":\"Use a URL address to generate containers based on a reference from the open web.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ai-variations-in-template-library-3.19.png\",\"chipPlan\":\"Elementor AI\",\"chipTags\":[\"New Feature\"],\"conditions\":[[{\"type\":\"introduction_meta\",\"meta\":\"ai_get_started\"}]],\"cta\":\"Get Elementor AI\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-web-based-container\\/\"},{\"id\":\"ai-variations-in-template-library-3.19\",\"title\":\"Inspire Your Creation with Web-Based Container Generation\",\"description\":\"Use a URL address to generate containers based on a reference from the open web.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ai-variations-in-template-library-3.19.png\",\"chipPlan\":\"Elementor AI\",\"chipTags\":[\"New Feature\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-web-based-container\\/\"},{\"id\":\"taxonomy-filter-multi-select-3.18\",\"title\":\"Enhance the Visitor Experience of Listings with Taxonomy Filter Multi-Select Capabilities\",\"description\":\"Help visitors find the products and posts they\'re looking for by filter listings based on multiple categories or tags from the same taxonomy filter.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/taxonomy-filter-multi-select-3.18.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-318-element-manager-multi-selection-taxonomy-filter\\/#:~:text=%5BPro%5D%20Enhanced%20Taxonomy%20Filter%20with%20Multi%2DSelection\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"taxonomy-filter-multi-select-3.18\",\"title\":\"Enhance the Visitor Experience of Listings with Taxonomy Filter Multi-Select Capabilities\",\"description\":\"Help visitors find the products and posts they\'re looking for by filter listings based on multiple categories or tags from the same taxonomy filter.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/taxonomy-filter-multi-select-3.18.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-318-element-manager-multi-selection-taxonomy-filter\\/#:~:text=%5BPro%5D%20Enhanced%20Taxonomy%20Filter%20with%20Multi%2DSelection\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-taxonomy-filter\\/\"}]\";}','no'),(1805,'_transient_timeout_elementor_unread_notifications_1','1714311937','no'),(1806,'_transient_elementor_unread_notifications_1','a:8:{i:0;s:39:\"display-conditions-dynamic-content-3.20\";i:1;s:32:\"display-conditions-or-logic-3.20\";i:2;s:20:\"5-star-rating-prompt\";i:3;s:32:\"element-manager-permissions-3.19\";i:4;s:12:\"akismet-3.19\";i:5;s:20:\"image-optimizer-3.19\";i:6;s:38:\"ai-variations-in-template-library-3.19\";i:7;s:33:\"taxonomy-filter-multi-select-3.18\";}','no'),(1870,'_site_transient_timeout_theme_roots','1719264040','no'),(1871,'_site_transient_theme_roots','a:4:{s:15:\"hello-elementor\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(1872,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1719262241;s:15:\"version_checked\";s:5:\"6.5.5\";s:12:\"translations\";a:0:{}}','no'),(1873,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1719262247;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.83\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.83.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2990457\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2990457\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.22.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:6:\"1.6.36\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.36.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2813167\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2813167\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/elementskit-lite\";s:4:\"slug\";s:16:\"elementskit-lite\";s:6:\"plugin\";s:37:\"elementskit-lite/elementskit-lite.php\";s:11:\"new_version\";s:5:\"3.2.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/elementskit-lite/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/elementskit-lite.3.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175\";s:2:\"1x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/elementskit-lite/assets/banner-1544x500.png?rev=2118488\";s:2:\"1x\";s:71:\"https://ps.w.org/elementskit-lite/assets/banner-772x250.png?rev=2118488\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:75:\"timeline-widget-addon-for-elementor/timeline-widget-addon-for-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/timeline-widget-addon-for-elementor\";s:4:\"slug\";s:35:\"timeline-widget-addon-for-elementor\";s:6:\"plugin\";s:75:\"timeline-widget-addon-for-elementor/timeline-widget-addon-for-elementor.php\";s:11:\"new_version\";s:5:\"1.5.8\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/timeline-widget-addon-for-elementor/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/timeline-widget-addon-for-elementor.1.5.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/timeline-widget-addon-for-elementor/assets/icon-256x256.png?rev=2891227\";s:2:\"1x\";s:88:\"https://ps.w.org/timeline-widget-addon-for-elementor/assets/icon-128x128.png?rev=2891227\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/timeline-widget-addon-for-elementor/assets/banner-1544x500.png?rev=2772459\";s:2:\"1x\";s:90:\"https://ps.w.org/timeline-widget-addon-for-elementor/assets/banner-772x250.png?rev=2772459\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.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 DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3966 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'),(5,6,'_elementor_edit_mode','builder'),(6,6,'_elementor_template_type','kit'),(7,6,'_elementor_version','3.11.5'),(8,7,'_elementor_edit_mode','builder'),(9,7,'_elementor_template_type','kit'),(10,7,'_elementor_version','3.11.5'),(11,6,'_wp_page_template','default'),(12,6,'_elementor_page_settings','a:100:{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:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#F2F2F2\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#251AFF\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"a41d1b1\";s:5:\"title\";s:8:\"Accent 2\";s:5:\"color\";s:7:\"#3F3F3F\";}}s:17:\"system_typography\";a:4:{i:0;a:9:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:13:\"Section Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"900\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:14:\"3-Column Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"900\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:2;a:9:{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:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:3;a:8:{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:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"800\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:6:{i:0;a:9:{s:3:\"_id\";s:7:\"046c196\";s:5:\"title\";s:10:\"Page Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:85;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:7:\"e263706\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";}i:2;a:8:{s:3:\"_id\";s:7:\"3ac5d19\";s:5:\"title\";s:15:\"Card Title/Name\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";}i:3;a:8:{s:3:\"_id\";s:7:\"5e56036\";s:5:\"title\";s:18:\"3-Column Numbering\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";}i:4;a:9:{s:3:\"_id\";s:7:\"03de200\";s:5:\"title\";s:7:\"Counter\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:5;a:8:{s:3:\"_id\";s:7:\"3a95010\";s:5:\"title\";s:3:\"404\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:5:\"Runda\";s:16:\"site_description\";s:46:\"Just another Elementor Template Kit Sites site\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:27:\"form_field_background_color\";s:7:\"#F7F7F7\";s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:18:\"form_field_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:22:{s:16:\"form_label_color\";s:25:\"globals/colors?id=a41d1b1\";s:32:\"form_label_typography_typography\";s:26:\"globals/typography?id=text\";s:32:\"form_field_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"form_field_text_color\";s:25:\"globals/colors?id=a41d1b1\";s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:0:\"\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=a41d1b1\";s:33:\"link_normal_typography_typography\";s:0:\"\";s:8:\"h1_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:0:\"\";s:24:\"h2_typography_typography\";s:0:\"\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=e263706\";s:17:\"button_text_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:23:\"button_hover_text_color\";s:24:\"globals/colors?id=accent\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=primary\";s:25:\"button_hover_border_color\";s:24:\"globals/colors?id=accent\";s:19:\"button_border_color\";s:24:\"globals/colors?id=accent\";s:24:\"h3_typography_typography\";s:0:\"\";s:24:\"h4_typography_typography\";s:0:\"\";s:24:\"h5_typography_typography\";s:0:\"\";s:24:\"h6_typography_typography\";s:0:\"\";}s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:26:\"button_hover_border_border\";s:5:\"solid\";s:25:\"button_hover_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:10:\"body_color\";s:7:\"#000000\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Poppins\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#3F3F3F\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Poppins\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"900\";s:32:\"h1_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Poppins\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"900\";s:32:\"h2_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Poppins\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"900\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Poppins\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"800\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Poppins\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"700\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Poppins\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"400\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:7:\"Poppins\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#251AFF\";s:19:\"button_border_color\";s:7:\"#251AFF\";s:23:\"button_hover_text_color\";s:7:\"#251AFF\";s:29:\"button_hover_background_color\";s:7:\"#FFFFFF\";s:25:\"button_hover_border_color\";s:7:\"#251AFF\";s:16:\"form_label_color\";s:7:\"#3F3F3F\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:7:\"Poppins\";s:31:\"form_label_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:38:\"form_label_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:38:\"form_label_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"form_label_typography_font_weight\";s:3:\"400\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:7:\"Poppins\";s:31:\"form_field_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:38:\"form_field_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:38:\"form_field_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"form_field_typography_font_weight\";s:3:\"400\";s:33:\"form_field_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:21:\"form_field_text_color\";s:7:\"#3F3F3F\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(14,8,'_edit_last','1'),(15,8,'_edit_lock','1683226021:1'),(16,8,'_wp_page_template','elementor_header_footer'),(17,8,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(18,8,'ehf_target_exclude_locations','a:0:{}'),(19,8,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(20,8,'ehf_template_type','type_header'),(21,8,'_elementor_edit_mode','builder'),(22,8,'_elementor_template_type','wp-post'),(23,8,'_elementor_version','3.12.2'),(25,8,'ekit_post_views_count','10'),(28,11,'_elementor_edit_mode','builder'),(29,11,'_elementor_template_type','kit'),(30,11,'_elementor_version','3.11.5'),(31,11,'_elementor_pro_version','3.11.6'),(32,12,'_elementor_edit_mode','builder'),(33,12,'_elementor_template_type','kit'),(34,12,'_elementor_version','3.11.5'),(35,12,'_elementor_pro_version','3.11.6'),(36,11,'_wp_page_template','default'),(37,11,'_elementor_page_settings','a:100:{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:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#F2F2F2\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#251AFF\";}}s:13:\"custom_colors\";a:2:{i:0;a:3:{s:3:\"_id\";s:7:\"a41d1b1\";s:5:\"title\";s:8:\"Accent 2\";s:5:\"color\";s:7:\"#3F3F3F\";}i:1;a:3:{s:3:\"_id\";s:7:\"a41d1b1\";s:5:\"title\";s:8:\"Accent 2\";s:5:\"color\";s:7:\"#3F3F3F\";}}s:17:\"system_typography\";a:4:{i:0;a:9:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:13:\"Section Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"900\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:14:\"3-Column Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"900\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:2;a:9:{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:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:3;a:8:{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:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"800\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:12:{i:0;a:9:{s:3:\"_id\";s:7:\"046c196\";s:5:\"title\";s:10:\"Page Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:85;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}i:1;a:9:{s:3:\"_id\";s:7:\"e263706\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";}i:2;a:8:{s:3:\"_id\";s:7:\"3ac5d19\";s:5:\"title\";s:15:\"Card Title/Name\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";}i:3;a:8:{s:3:\"_id\";s:7:\"5e56036\";s:5:\"title\";s:18:\"3-Column Numbering\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";}i:4;a:9:{s:3:\"_id\";s:7:\"03de200\";s:5:\"title\";s:7:\"Counter\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:5;a:8:{s:3:\"_id\";s:7:\"3a95010\";s:5:\"title\";s:3:\"404\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";}i:6;a:9:{s:3:\"_id\";s:7:\"046c196\";s:5:\"title\";s:10:\"Page Title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:85;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}i:7;a:9:{s:3:\"_id\";s:7:\"e263706\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";}i:8;a:8:{s:3:\"_id\";s:7:\"3ac5d19\";s:5:\"title\";s:15:\"Card Title/Name\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";}i:9;a:8:{s:3:\"_id\";s:7:\"5e56036\";s:5:\"title\";s:18:\"3-Column Numbering\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";}i:10;a:9:{s:3:\"_id\";s:7:\"03de200\";s:5:\"title\";s:7:\"Counter\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:11;a:8:{s:3:\"_id\";s:7:\"3a95010\";s:5:\"title\";s:3:\"404\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:160;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"900\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:5:\"Runda\";s:16:\"site_description\";s:46:\"Just another Elementor Template Kit Sites site\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:27:\"form_field_background_color\";s:7:\"#F7F7F7\";s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:18:\"form_field_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:22:{s:16:\"form_label_color\";s:25:\"globals/colors?id=a41d1b1\";s:32:\"form_label_typography_typography\";s:26:\"globals/typography?id=text\";s:32:\"form_field_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"form_field_text_color\";s:25:\"globals/colors?id=a41d1b1\";s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:0:\"\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=a41d1b1\";s:33:\"link_normal_typography_typography\";s:0:\"\";s:8:\"h1_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:0:\"\";s:24:\"h2_typography_typography\";s:0:\"\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=e263706\";s:17:\"button_text_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:23:\"button_hover_text_color\";s:24:\"globals/colors?id=accent\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=primary\";s:25:\"button_hover_border_color\";s:24:\"globals/colors?id=accent\";s:19:\"button_border_color\";s:24:\"globals/colors?id=accent\";s:24:\"h3_typography_typography\";s:0:\"\";s:24:\"h4_typography_typography\";s:0:\"\";s:24:\"h5_typography_typography\";s:0:\"\";s:24:\"h6_typography_typography\";s:0:\"\";}s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:26:\"button_hover_border_border\";s:5:\"solid\";s:25:\"button_hover_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:10:\"body_color\";s:7:\"#000000\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Poppins\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#3F3F3F\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Poppins\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"900\";s:32:\"h1_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Poppins\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"900\";s:32:\"h2_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Poppins\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"900\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Poppins\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"800\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Poppins\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"700\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Poppins\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"400\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:7:\"Poppins\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#251AFF\";s:19:\"button_border_color\";s:7:\"#251AFF\";s:23:\"button_hover_text_color\";s:7:\"#251AFF\";s:29:\"button_hover_background_color\";s:7:\"#FFFFFF\";s:25:\"button_hover_border_color\";s:7:\"#251AFF\";s:16:\"form_label_color\";s:7:\"#3F3F3F\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:7:\"Poppins\";s:31:\"form_label_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:38:\"form_label_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:38:\"form_label_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"form_label_typography_font_weight\";s:3:\"400\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:7:\"Poppins\";s:31:\"form_field_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:38:\"form_field_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:38:\"form_field_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"form_field_typography_font_weight\";s:3:\"400\";s:33:\"form_field_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:21:\"form_field_text_color\";s:7:\"#3F3F3F\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(38,13,'_elementor_edit_mode','builder'),(39,13,'_elementor_template_type','section'),(40,13,'_elementor_version','3.11.5'),(41,13,'_elementor_pro_version','3.11.6'),(42,14,'_wp_attached_file','2023/03/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg'),(43,14,'_elementor_import_session_id','6413f93187d95'),(44,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2450;s:6:\"height\";i:1838;s:4:\"file\";s:72:\"2023/03/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\";s:8:\"filesize\";i:268164;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28588;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76027;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24838;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53862;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:74:\"glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140345;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:74:\"glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224662;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:12:\"Valua Vitaly\";s:6:\"camera\";s:11:\"PENTAX 645Z\";s:7:\"caption\";s:194:\"Glamour fashion girl. Beauty face with bright makeup. Young beautiful woman in a white wig, bob hairstyle. Close up art portrait  of  an young attractive woman with vivid colors. Stylish blonde.\";s:17:\"created_timestamp\";s:10:\"1593612717\";s:9:\"copyright\";s:12:\"VALUA STUDIO\";s:12:\"focal_length\";s:3:\"150\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:64:\"Glamour fashion girl. Beauty face with bright makeup. Young beau\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:47:{i:0;s:5:\"woman\";i:1;s:4:\"hair\";i:2;s:6:\"beauty\";i:3;s:8:\"portrait\";i:4;s:9:\"beautiful\";i:5;s:5:\"party\";i:6;s:4:\"neon\";i:7;s:4:\"blue\";i:8;s:5:\"light\";i:9;s:5:\"color\";i:10;s:5:\"night\";i:11;s:4:\"club\";i:12;s:9:\"stylelish\";i:13;s:4:\"girl\";i:14;s:5:\"disco\";i:15;s:7:\"fashion\";i:16;s:5:\"model\";i:17;s:4:\"face\";i:18;s:3:\"red\";i:19;s:6:\"makeup\";i:20;s:6:\"people\";i:21;s:9:\"hairstyle\";i:22;s:6:\"person\";i:23;s:4:\"blue\";i:24;s:7:\"glamour\";i:25;s:5:\"style\";i:26;s:4:\"eyes\";i:27;s:4:\"pink\";i:28;s:7:\"make-up\";i:29;s:5:\"black\";i:30;s:3:\"wig\";i:31;s:6:\"studio\";i:32;s:4:\"lips\";i:33;s:7:\"make up\";i:34;s:7:\"fantasy\";i:35;s:6:\"studio\";i:36;s:5:\"shine\";i:37;s:6:\"tinsel\";i:38;s:6:\"blonde\";i:39;s:5:\"blond\";i:40;s:6:\"purple\";i:41;s:6:\"violet\";i:42;s:5:\"vivid\";i:43;s:5:\"shiny\";i:44;s:9:\"brilliant\";i:45;s:6:\"Bright\";i:46;s:3:\"bob\";}}}'),(45,14,'_elementor_source_image_hash','5ecd88e76232c8720b0350711e3989c3c806ca0a'),(46,15,'_wp_attached_file','2023/03/runda_Монтажная-область-1_bg3.jpg'),(47,15,'_elementor_import_session_id','6413f93187d95'),(48,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1134;s:4:\"file\";s:57:\"2023/03/runda_Монтажная-область-1_bg3.jpg\";s:8:\"filesize\";i:176421;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"runda_Монтажная-область-1_bg3-300x142.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19930;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"runda_Монтажная-область-1_bg3-1024x484.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:484;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30499;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"runda_Монтажная-область-1_bg3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19616;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"runda_Монтажная-область-1_bg3-768x363.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25624;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"runda_Монтажная-область-1_bg3-1536x726.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:726;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40233;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:58:\"runda_Монтажная-область-1_bg3-2048x968.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:968;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50634;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,15,'_elementor_source_image_hash','96752590a8f86818318350a25f7be474f504f3a7'),(50,16,'_wp_attached_file','2023/03/run2.png'),(51,16,'_elementor_import_session_id','6413f93187d95'),(52,16,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:481;s:4:\"file\";s:16:\"2023/03/run2.png\";s:8:\"filesize\";i:812272;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"run2-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38757;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"run2-1024x410.png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:469492;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"run2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26842;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"run2-768x308.png\";s:5:\"width\";i:768;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:257774;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53,16,'_elementor_source_image_hash','8df966b303f4745542cfe21aa775efaf77fc40c7'),(54,17,'_wp_attached_file','2023/03/run1.png'),(55,17,'_elementor_import_session_id','6413f93187d95'),(56,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:481;s:4:\"file\";s:16:\"2023/03/run1.png\";s:8:\"filesize\";i:702741;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"run1-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52881;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"run1-1024x410.png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:452832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"run1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29430;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"run1-768x308.png\";s:5:\"width\";i:768;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:270591;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(57,17,'_elementor_source_image_hash','eabf0b65dcade351824018cafe69953191a29df5'),(58,18,'_wp_attached_file','2023/03/da2.png'),(59,18,'_elementor_import_session_id','6413f93187d95'),(60,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:476;s:4:\"file\";s:15:\"2023/03/da2.png\";s:8:\"filesize\";i:621229;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"da2-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28582;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"da2-1024x406.png\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:360181;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"da2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22785;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"da2-768x305.png\";s:5:\"width\";i:768;s:6:\"height\";i:305;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197523;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,18,'_elementor_source_image_hash','d257d93a8a299842a73a0fd81beb4a43c5ed8a2c'),(62,19,'_wp_attached_file','2023/03/da1.png'),(63,19,'_elementor_import_session_id','6413f93187d95'),(64,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:476;s:4:\"file\";s:15:\"2023/03/da1.png\";s:8:\"filesize\";i:531689;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"da1-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37103;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"da1-1024x406.png\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:332028;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"da1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26300;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"da1-768x305.png\";s:5:\"width\";i:768;s:6:\"height\";i:305;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196431;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(65,19,'_elementor_source_image_hash','a53bee826a284be1cc2f941a48e456f5a43fbabe'),(66,20,'_wp_attached_file','2023/03/Mesa-de-trabajo-1-copia-e1617856194424.jpg'),(67,20,'_elementor_import_session_id','6413f93187d95'),(68,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:50:\"2023/03/Mesa-de-trabajo-1-copia-e1617856194424.jpg\";s:8:\"filesize\";i:89034;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Mesa-de-trabajo-1-copia-e1617856194424-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24096;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Mesa-de-trabajo-1-copia-e1617856194424-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59516;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Mesa-de-trabajo-1-copia-e1617856194424-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20555;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Mesa-de-trabajo-1-copia-e1617856194424-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66854;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(69,20,'_elementor_source_image_hash','d4d4e3437b71359571e49f7adf465fa75418ed51'),(70,21,'_wp_attached_file','2023/03/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg'),(71,21,'_elementor_import_session_id','6413f93187d95'),(72,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:55:\"2023/03/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\";s:8:\"filesize\";i:105688;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Mesa-de-trabajo-1-copia-copy-e1617856220949-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27349;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Mesa-de-trabajo-1-copia-copy-e1617856220949-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68556;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Mesa-de-trabajo-1-copia-copy-e1617856220949-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22382;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"Mesa-de-trabajo-1-copia-copy-e1617856220949-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77490;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,21,'_elementor_source_image_hash','702fe460208be2a65a12f3c1769934741f95172c'),(74,22,'_wp_attached_file','2023/03/gray_Artboard-6.jpg'),(75,22,'_elementor_import_session_id','6413f93187d95'),(76,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/gray_Artboard-6.jpg\";s:8:\"filesize\";i:47704;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18588;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18247;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(77,22,'_elementor_source_image_hash','e78e97aceb166ca7c5c4f5f207f94d53be672ce8'),(78,23,'_wp_attached_file','2023/03/blue_Artboard-6.jpg'),(79,23,'_elementor_import_session_id','6413f93187d95'),(80,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/blue_Artboard-6.jpg\";s:8:\"filesize\";i:67435;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28432;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27321;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(81,23,'_elementor_source_image_hash','978257a3cf6f541a9a964ba45736cc9fe9b06cd0'),(82,24,'_wp_attached_file','2023/03/gray_Artboard-5.jpg'),(83,24,'_elementor_import_session_id','6413f93187d95'),(84,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/gray_Artboard-5.jpg\";s:8:\"filesize\";i:50938;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19073;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18414;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,24,'_elementor_source_image_hash','db4e7a70446f17f4221afe6ec7591efc809fd844'),(86,25,'_wp_attached_file','2023/03/blue_Artboard-5.jpg'),(87,25,'_elementor_import_session_id','6413f93187d95'),(88,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/blue_Artboard-5.jpg\";s:8:\"filesize\";i:77264;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29796;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27872;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(89,25,'_elementor_source_image_hash','f71e6549048bf98a7b0be53cce0e4db277f72e25'),(90,26,'_wp_attached_file','2023/03/gray_Artboard-4.jpg'),(91,26,'_elementor_import_session_id','6413f93187d95'),(92,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/gray_Artboard-4.jpg\";s:8:\"filesize\";i:51076;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19201;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18467;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(93,26,'_elementor_source_image_hash','de5c3455ea6eeaebae5e7af5a5f3b03b8583da65'),(94,27,'_wp_attached_file','2023/03/blue_Artboard-4.jpg'),(95,27,'_elementor_import_session_id','6413f93187d95'),(96,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/blue_Artboard-4.jpg\";s:8:\"filesize\";i:77745;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30172;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28044;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,27,'_elementor_source_image_hash','847cd1e91afc4c666b4f54faa12d78238e366afa'),(98,28,'_wp_attached_file','2023/03/gray_Artboard-3.jpg'),(99,28,'_elementor_import_session_id','6413f93187d95'),(100,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/gray_Artboard-3.jpg\";s:8:\"filesize\";i:51355;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19241;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18441;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(101,28,'_elementor_source_image_hash','c11480a0e4d5bf2f1b44aebb570c7f781afa7c31'),(102,29,'_wp_attached_file','2023/03/blue_Artboard-3.jpg'),(103,29,'_elementor_import_session_id','6413f93187d95'),(104,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/blue_Artboard-3.jpg\";s:8:\"filesize\";i:78603;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30269;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27973;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(105,29,'_elementor_source_image_hash','8ae6af618276f1df62054eb316328e3553bb2051'),(106,30,'_wp_attached_file','2023/03/gray_Artboard-2.jpg'),(107,30,'_elementor_import_session_id','6413f93187d95'),(108,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/gray_Artboard-2.jpg\";s:8:\"filesize\";i:50699;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19046;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18436;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,30,'_elementor_source_image_hash','308e3fde3401c3e3919a7089612b923261e0cf6c'),(110,31,'_wp_attached_file','2023/03/blue_Artboard-2.jpg'),(111,31,'_elementor_import_session_id','6413f93187d95'),(112,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/blue_Artboard-2.jpg\";s:8:\"filesize\";i:76534;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29807;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27917;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(113,31,'_elementor_source_image_hash','794faa36be56e8479fbfde2fa4292eb7e593abf3'),(114,32,'_wp_attached_file','2023/03/gray_Artboard-1.jpg'),(115,32,'_elementor_import_session_id','6413f93187d95'),(116,32,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/gray_Artboard-1.jpg\";s:8:\"filesize\";i:49003;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15068;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"gray_Artboard-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(117,32,'_elementor_source_image_hash','7c9f54f2bd9d37a46071a021f4316bf3020374d2'),(118,33,'_wp_attached_file','2023/03/blue_Artboard-1.jpg'),(119,33,'_elementor_import_session_id','6413f93187d95'),(120,33,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2023/03/blue_Artboard-1.jpg\";s:8:\"filesize\";i:84865;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31194;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"blue_Artboard-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28791;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,33,'_elementor_source_image_hash','9dc1c9e9b5d4e9071c95d6c4210eea56a9ecffd9'),(122,34,'_wp_attached_file','2023/03/placeholder.png'),(123,34,'_elementor_import_session_id','6413f93187d95'),(124,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2023/03/placeholder.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(125,34,'_elementor_source_image_hash','46ac19dd5ae018233054b06500ee4df381710c79'),(126,35,'_wp_attached_file','2023/03/rundalogo_2.png'),(127,35,'_elementor_import_session_id','6413f93187d95'),(128,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:23:\"2023/03/rundalogo_2.png\";s:8:\"filesize\";i:830085;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"rundalogo_2-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70000;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"rundalogo_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24196;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"rundalogo_2-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:411490;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(129,35,'_elementor_source_image_hash','423703d75bbcd20751ba2168fb6f59b721edc827'),(130,36,'_wp_attached_file','2023/03/rundalogo_4.png'),(131,36,'_elementor_import_session_id','6413f93187d95'),(132,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:23:\"2023/03/rundalogo_4.png\";s:8:\"filesize\";i:1033697;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"rundalogo_4-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89006;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"rundalogo_4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30117;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"rundalogo_4-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:523858;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,36,'_elementor_source_image_hash','c513be94544b4f59d1a82caea045ce232c905d7e'),(134,37,'_wp_attached_file','2023/03/rundalogo_3.png'),(135,37,'_elementor_import_session_id','6413f93187d95'),(136,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:23:\"2023/03/rundalogo_3.png\";s:8:\"filesize\";i:904172;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"rundalogo_3-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93490;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"rundalogo_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32628;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"rundalogo_3-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:491420;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(137,37,'_elementor_source_image_hash','a930af7696f84f00992e206920b85095ffdc60b2'),(138,38,'_wp_attached_file','2023/03/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg'),(139,38,'_elementor_import_session_id','6413f93187d95'),(140,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1335;s:4:\"file\";s:42:\"2023/03/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\";s:8:\"filesize\";i:323809;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"dom-fou-QZfmPAOnt2Y-unsplash_2-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15065;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"dom-fou-QZfmPAOnt2Y-unsplash_2-1024x570.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"dom-fou-QZfmPAOnt2Y-unsplash_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11052;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"dom-fou-QZfmPAOnt2Y-unsplash_2-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47773;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"dom-fou-QZfmPAOnt2Y-unsplash_2-1536x854.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147452;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:44:\"dom-fou-QZfmPAOnt2Y-unsplash_2-2048x1139.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237318;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(141,38,'_elementor_source_image_hash','253f7f09d6d0c4ba78c88e8c5589a030ddb9d08d'),(142,39,'_wp_attached_file','2023/03/runda_Artboard-1_portrait-min.jpeg'),(143,39,'_elementor_import_session_id','6413f93187d95'),(144,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:42:\"2023/03/runda_Artboard-1_portrait-min.jpeg\";s:8:\"filesize\";i:64582;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-1_portrait-min-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8830;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-1_portrait-min-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3422;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-1_portrait-min-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35834;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(145,39,'_elementor_source_image_hash','34df0b6536659c4efaae174c61905da828956f62'),(146,40,'_wp_attached_file','2023/03/clientlogo_Artboard-5.png'),(147,40,'_elementor_import_session_id','6413f93187d95'),(148,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:33:\"2023/03/clientlogo_Artboard-5.png\";s:8:\"filesize\";i:12948;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-5-300x210.png\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5325;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3556;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-5-768x538.png\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13537;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149,40,'_elementor_source_image_hash','7b2d7e824679331c6cc1719b2f18128200b0bbcd'),(150,41,'_wp_attached_file','2023/03/placeholder-1.png'),(151,41,'_elementor_import_session_id','6413f93187d95'),(152,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/03/placeholder-1.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(153,41,'_elementor_source_image_hash','f17e4825b2b378a894b55803d4a996565c6d1876'),(154,42,'_wp_attached_file','2023/03/runda_Artboard-2_portrait-min.jpeg'),(155,42,'_elementor_import_session_id','6413f93187d95'),(156,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:42:\"2023/03/runda_Artboard-2_portrait-min.jpeg\";s:8:\"filesize\";i:94014;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-2_portrait-min-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11541;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-2_portrait-min-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4165;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-2_portrait-min-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(157,42,'_elementor_source_image_hash','fd39031ade8d0b5676ca1db789fe3f4e641b158a'),(158,43,'_wp_attached_file','2023/03/clientlogo_Artboard-4.png'),(159,43,'_elementor_import_session_id','6413f93187d95'),(160,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:33:\"2023/03/clientlogo_Artboard-4.png\";s:8:\"filesize\";i:30057;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-4-300x210.png\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8252;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5166;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-4-768x538.png\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28353;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(161,43,'_elementor_source_image_hash','ed83cab64311af90d03e5ee5ab635f46cc2ee840'),(162,44,'_wp_attached_file','2023/03/runda_Artboard-5_portrait-min.jpeg'),(163,44,'_elementor_import_session_id','6413f93187d95'),(164,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:42:\"2023/03/runda_Artboard-5_portrait-min.jpeg\";s:8:\"filesize\";i:63347;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-5_portrait-min-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7785;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-5_portrait-min-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2972;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-5_portrait-min-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33835;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(165,44,'_elementor_source_image_hash','e45f2c3d446b8d5829692a00f05991fa4783e700'),(166,45,'_wp_attached_file','2023/03/clientlogo_Artboard-3.png'),(167,45,'_elementor_import_session_id','6413f93187d95'),(168,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:33:\"2023/03/clientlogo_Artboard-3.png\";s:8:\"filesize\";i:17166;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-3-300x210.png\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6231;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4069;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-3-768x538.png\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18671;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(169,45,'_elementor_source_image_hash','f784ef198be6fe8b43f47c688b88963643114e67'),(170,46,'_wp_attached_file','2023/03/runda_Artboard-3_portrait-min.jpeg'),(171,46,'_elementor_import_session_id','6413f93187d95'),(172,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:42:\"2023/03/runda_Artboard-3_portrait-min.jpeg\";s:8:\"filesize\";i:127535;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-3_portrait-min-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-3_portrait-min-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4768;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-3_portrait-min-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65112;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(173,46,'_elementor_source_image_hash','b26a259c8960bcb17d2fe914bf1d054e8af6d2df'),(174,47,'_wp_attached_file','2023/03/clientlogo_Artboard-2.png'),(175,47,'_elementor_import_session_id','6413f93187d95'),(176,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:33:\"2023/03/clientlogo_Artboard-2.png\";s:8:\"filesize\";i:13175;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-2-300x210.png\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5256;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3573;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-2-768x538.png\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14387;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(177,47,'_elementor_source_image_hash','f1ca8857e486cc98e010405cbeacf61566c031d1'),(178,48,'_wp_attached_file','2023/03/runda_Artboard-4_portrait-min.jpeg'),(179,48,'_elementor_import_session_id','6413f93187d95'),(180,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:42:\"2023/03/runda_Artboard-4_portrait-min.jpeg\";s:8:\"filesize\";i:93032;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-4_portrait-min-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10617;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-4_portrait-min-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3811;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"runda_Artboard-4_portrait-min-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49299;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(181,48,'_elementor_source_image_hash','f867c71c57ea1cb3929d09f1e73484e9b32a9f4f'),(182,49,'_wp_attached_file','2023/03/clientlogo_Artboard-1.png'),(183,49,'_elementor_import_session_id','6413f93187d95'),(184,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:33:\"2023/03/clientlogo_Artboard-1.png\";s:8:\"filesize\";i:15966;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-1-300x210.png\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5368;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3630;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"clientlogo_Artboard-1-768x538.png\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15321;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(185,49,'_elementor_source_image_hash','6558971c441d5f9e0b1940ff65b5030481cef9f4'),(186,50,'_wp_attached_file','2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg'),(187,50,'_elementor_import_session_id','6413f93187d95'),(188,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:60:\"2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\";s:8:\"filesize\";i:412253;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45724;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:279267;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24533;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173285;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(189,50,'_elementor_source_image_hash','4eee6a2d1e5a692dc58753029d87e2e69345556b'),(190,51,'_wp_attached_file','2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg'),(191,51,'_elementor_import_session_id','6413f93187d95'),(192,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:54:\"2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg\";s:8:\"filesize\";i:172595;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"young-man-with-interesting-style-U5YJBRD_2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30338;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118060;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"young-man-with-interesting-style-U5YJBRD_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24414;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118060;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224392;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T3\";s:7:\"caption\";s:61:\"Portrit of trendy handsome man in sunglasses at photo studio.\";s:17:\"created_timestamp\";s:10:\"1575493476\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:32:\"Young man with interesting style\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:5:\"toned\";i:1;s:7:\"unusual\";i:2;s:3:\"red\";i:3;s:4:\"blue\";i:4;s:5:\"light\";i:5;s:4:\"cold\";i:6;s:6:\"shades\";i:7;s:8:\"portrait\";i:8;s:3:\"one\";i:9;s:9:\"cyberpunk\";i:10;s:5:\"young\";i:11;s:10:\"attractive\";i:12;s:9:\"hairstyle\";i:13;s:5:\"beard\";i:14;s:9:\"moustache\";i:15;s:6:\"posing\";i:16;s:7:\"electro\";i:17;s:6:\"modern\";i:18;s:5:\"style\";i:19;s:5:\"retro\";i:20;s:6:\"future\";i:21;s:8:\"handsome\";i:22;s:7:\"groomed\";i:23;s:7:\"glasses\";i:24;s:10:\"reflection\";i:25;s:4:\"male\";i:26;s:5:\"adult\";i:27;s:6:\"studio\";i:28;s:3:\"man\";i:29;s:7:\"fashion\";i:30;s:6:\"people\";i:31;s:12:\"professional\";i:32;s:4:\"cool\";i:33;s:9:\"lifestyle\";i:34;s:10:\"sunglasses\";i:35;s:3:\"guy\";i:36;s:6:\"person\";i:37;s:10:\"background\";i:38;s:11:\"alternative\";i:39;s:6:\"indoor\";i:40;s:7:\"culture\";i:41;s:6:\"scenic\";i:42;s:11:\"extravagant\";i:43;s:7:\"bearded\";i:44;s:7:\"stylish\";i:45;s:6:\"casual\";i:46;s:4:\"look\";i:47;s:8:\"necklace\";i:48;s:7:\"pensive\";}}}'),(193,51,'_elementor_source_image_hash','f58f909381dfa325ead53e89506abc85f7186baa'),(194,52,'_wp_attached_file','2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg'),(195,52,'_elementor_import_session_id','6413f93187d95'),(196,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:72:\"2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\";s:8:\"filesize\";i:96012;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29100;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68491;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25174;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:73:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68491;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:74:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108507;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:112:\"Portrait of fashion girl in a black sweater with a hood and sunglasses round shape in neon light in the studio .\";s:17:\"created_timestamp\";s:10:\"1548431933\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:110:\"Portrait of fashion girl in a black sweater with a hood and sunglasses round shape in neon light in the studio\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:7:\"fashion\";i:1;s:4:\"girl\";i:2;s:4:\"neon\";i:3;s:5:\"woman\";i:4;s:5:\"young\";i:5;s:5:\"model\";i:6;s:8:\"portrait\";i:7;s:7:\"elegant\";i:8;s:9:\"beautiful\";i:9;s:10:\"sunglasses\";i:10;s:5:\"color\";i:11;s:7:\"glasses\";i:12;s:6:\"studio\";i:13;s:7:\"hipster\";i:14;s:6:\"beauty\";i:15;s:4:\"blue\";i:16;s:3:\"red\";i:17;s:4:\"sexy\";i:18;s:5:\"style\";i:19;s:4:\"face\";i:20;s:6:\"female\";i:21;s:9:\"caucasian\";i:22;s:5:\"light\";i:23;s:6:\"violet\";i:24;s:5:\"black\";i:25;s:7:\"stylish\";i:26;s:4:\"rock\";i:27;s:6:\"pretty\";i:28;s:4:\"lady\";i:29;s:7:\"eyewear\";i:30;s:8:\"colorful\";i:31;s:6:\"makeup\";i:32;s:5:\"round\";i:33;s:5:\"night\";i:34;s:7:\"closeup\";i:35;s:6:\"bright\";i:36;s:3:\"art\";i:37;s:6:\"people\";i:38;s:8:\"lighting\";i:39;s:9:\"cinematic\";i:40;s:6:\"trendy\";i:41;s:6:\"lights\";i:42;s:5:\"cyber\";i:43;s:4:\"shot\";i:44;s:4:\"lamp\";i:45;s:6:\"hoodie\";i:46;s:6:\"design\";i:47;s:6:\"person\";i:48;s:8:\"close-up\";i:49;s:10:\"subculture\";}}}'),(197,52,'_elementor_source_image_hash','8505fb790d30db56cfd42246f634c66d550b3f66'),(198,53,'_wp_attached_file','2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg'),(199,53,'_elementor_import_session_id','6413f93187d95'),(200,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:71:\"2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\";s:8:\"filesize\";i:96916;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30491;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77946;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26039;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77946;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:73:\"modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:82:\"Modern youth. Studio shot in dark studio with neon light. Portrait of serious man.\";s:17:\"created_timestamp\";s:10:\"1558086150\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:81:\"Modern youth. Studio shot in dark studio with neon light. Portrait of serious man\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:3:\"hat\";i:1;s:3:\"cap\";i:2;s:3:\"man\";i:3;s:9:\"long hair\";i:4;s:8:\"brunette\";i:5;s:7:\"eyewear\";i:6;s:7:\"glasses\";i:7;s:8:\"portrait\";i:8;s:6:\"studio\";i:9;s:7:\"indoors\";i:10;s:5:\"black\";i:11;s:9:\"caucasian\";i:12;s:3:\"red\";i:13;s:4:\"neon\";i:14;s:5:\"light\";i:15;s:9:\"cyberpunk\";i:16;s:8:\"colorful\";i:17;s:4:\"dark\";i:18;s:5:\"model\";i:19;s:4:\"face\";i:20;s:5:\"night\";i:21;s:7:\"fashion\";i:22;s:5:\"white\";i:23;s:3:\"art\";i:24;s:10:\"background\";i:25;s:9:\"beautiful\";i:26;s:4:\"blue\";i:27;s:10:\"futuristic\";i:28;s:4:\"male\";i:29;s:3:\"one\";i:30;s:3:\"guy\";i:31;s:6:\"person\";i:32;s:5:\"style\";i:33;s:5:\"young\";i:34;s:5:\"human\";i:35;s:3:\"boy\";i:36;s:7:\"glamour\";i:37;s:7:\"elegant\";i:38;s:9:\"cinematic\";i:39;s:6:\"effect\";i:40;s:7:\"looking\";i:41;s:9:\"confident\";i:42;s:7:\"serious\";i:43;s:8:\"handsome\";i:44;s:8:\"creative\";i:45;s:10:\"technology\";i:46;s:5:\"retro\";i:47;s:5:\"synth\";i:48;s:5:\"adult\";i:49;s:4:\"nice\";}}}'),(201,53,'_elementor_source_image_hash','1a149b95db8ce456dca4fe92b1a36a0a0ccda257'),(202,54,'_wp_attached_file','2023/03/man-with-purple-light-portrait-LQY3DEA.jpg'),(203,54,'_elementor_import_session_id','6413f93187d95'),(204,54,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:50:\"2023/03/man-with-purple-light-portrait-LQY3DEA.jpg\";s:8:\"filesize\";i:111635;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"man-with-purple-light-portrait-LQY3DEA-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26995;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86312;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"man-with-purple-light-portrait-LQY3DEA-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21924;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86312;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151952;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"rawpixel.com / Teddy Rawpixel\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:30:\"Man with purple light portrait\";s:17:\"created_timestamp\";s:10:\"1600190228\";s:9:\"copyright\";s:13:\"Rawpixel Ltd.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:30:\"Man with purple light portrait\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:17:{i:0;s:5:\"alone\";i:1;s:8:\"american\";i:2;s:11:\"blank space\";i:3;s:9:\"copyspace\";i:4;s:12:\"design space\";i:5;s:7:\"gesture\";i:6;s:6:\"jacket\";i:7;s:3:\"man\";i:8;s:10:\"neon light\";i:9;s:3:\"one\";i:10;s:6:\"person\";i:11;s:4:\"pink\";i:12;s:8:\"portrait\";i:13;s:6:\"purple\";i:14;s:12:\"purple light\";i:15;s:10:\"text space\";i:16;s:8:\"thinking\";}}}'),(205,54,'_elementor_source_image_hash','7991d017b6f0e2b4f229581a2c58e0cc309bcc06'),(206,55,'_wp_attached_file','2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg'),(207,55,'_elementor_import_session_id','6413f93187d95'),(208,55,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:71:\"2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\";s:8:\"filesize\";i:202884;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37149;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133784;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30042;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133784;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:73:\"alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:246945;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:86:\"Alone in the room. Studio shot in dark studio with neon light. Portrait of young girl.\";s:17:\"created_timestamp\";s:10:\"1558098071\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:85:\"Alone in the room. Studio shot in dark studio with neon light. Portrait of young girl\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:5:\"glass\";i:1;s:10:\"reflection\";i:2;s:5:\"water\";i:3;s:5:\"woman\";i:4;s:4:\"hood\";i:5;s:7:\"through\";i:6;s:9:\"long hair\";i:7;s:8:\"brunette\";i:8;s:7:\"eyewear\";i:9;s:7:\"glasses\";i:10;s:8:\"portrait\";i:11;s:6:\"studio\";i:12;s:7:\"indoors\";i:13;s:9:\"caucasian\";i:14;s:3:\"red\";i:15;s:4:\"neon\";i:16;s:5:\"light\";i:17;s:8:\"colorful\";i:18;s:4:\"dark\";i:19;s:5:\"model\";i:20;s:4:\"face\";i:21;s:5:\"night\";i:22;s:6:\"female\";i:23;s:7:\"fashion\";i:24;s:5:\"white\";i:25;s:3:\"art\";i:26;s:10:\"attractive\";i:27;s:10:\"background\";i:28;s:9:\"beautiful\";i:29;s:4:\"blue\";i:30;s:10:\"futuristic\";i:31;s:3:\"one\";i:32;s:6:\"person\";i:33;s:4:\"girl\";i:34;s:5:\"style\";i:35;s:5:\"young\";i:36;s:5:\"human\";i:37;s:7:\"glamour\";i:38;s:7:\"elegant\";i:39;s:9:\"cinematic\";i:40;s:6:\"effect\";i:41;s:7:\"looking\";i:42;s:8:\"handsome\";i:43;s:8:\"creative\";i:44;s:10:\"technology\";i:45;s:5:\"retro\";i:46;s:5:\"synth\";i:47;s:5:\"adult\";i:48;s:4:\"nice\";i:49;s:9:\"cyberpunk\";}}}'),(209,55,'_elementor_source_image_hash','02f8d1e6a2f1499b999fd080ddf3beedd401624c'),(210,56,'_wp_attached_file','2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg'),(211,56,'_elementor_import_session_id','6413f93187d95'),(212,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:69:\"2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\";s:8:\"filesize\";i:120949;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34756;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94849;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29266;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94849;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:71:\"beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157043;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:85:\"Beautiful man in formal wear and in glasses is in the studio with blue neon lighting.\";s:17:\"created_timestamp\";s:10:\"1570278741\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:84:\"Beautiful man in formal wear and in glasses is in the studio with blue neon lighting\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:4:\"neon\";i:1;s:5:\"light\";i:2;s:11:\"fluorescent\";i:3;s:3:\"man\";i:4;s:3:\"guy\";i:5;s:4:\"male\";i:6;s:9:\"beautiful\";i:7;s:7:\"eyewear\";i:8;s:7:\"glasses\";i:9;s:10:\"futuristic\";i:10;s:4:\"suit\";i:11;s:3:\"tie\";i:12;s:6:\"formal\";i:13;s:4:\"wear\";i:14;s:7:\"clothes\";i:15;s:8:\"portrait\";i:16;s:9:\"caucasian\";i:17;s:4:\"blue\";i:18;s:9:\"cinematic\";i:19;s:6:\"design\";i:20;s:7:\"elegant\";i:21;s:4:\"face\";i:22;s:7:\"fashion\";i:23;s:4:\"long\";i:24;s:4:\"hair\";i:25;s:10:\"attractive\";i:26;s:8:\"elegance\";i:27;s:5:\"night\";i:28;s:6:\"single\";i:29;s:6:\"pretty\";i:30;s:6:\"studio\";i:31;s:7:\"indoors\";i:32;s:6:\"inside\";i:33;s:5:\"style\";i:34;s:5:\"young\";i:35;s:5:\"adult\";i:36;s:7:\"serious\";i:37;s:9:\"confident\";i:38;s:5:\"model\";i:39;s:7:\"hipster\";i:40;s:8:\"handsome\";i:41;s:4:\"dark\";i:42;s:8:\"creative\";i:43;s:5:\"party\";i:44;s:10:\"illuminate\";i:45;s:4:\"body\";i:46;s:6:\"trendy\";i:47;s:6:\"modern\";i:48;s:4:\"nice\";i:49;s:5:\"human\";}}}'),(213,56,'_elementor_source_image_hash','0c84579ecb8aac16a81d2d16829710b57a556775'),(214,57,'_wp_attached_file','2023/03/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg'),(215,57,'_elementor_import_session_id','6413f93187d95'),(216,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:50:\"2023/03/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\";s:8:\"filesize\";i:213021;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"pawel-czerwinski-NTYYL9Eb9y8-unsplash-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26392;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"pawel-czerwinski-NTYYL9Eb9y8-unsplash-1024x1024.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115878;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"pawel-czerwinski-NTYYL9Eb9y8-unsplash-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16026;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"pawel-czerwinski-NTYYL9Eb9y8-unsplash-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78133;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"pawel-czerwinski-NTYYL9Eb9y8-unsplash-1536x1536.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205722;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(217,57,'_elementor_source_image_hash','0f723c6a03b64da480e9f208228d5b11f7197b2b'),(218,13,'_elementor_data','[{\"id\":\"67a06416\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"4ab5ad9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"34eef1a1\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4b9475d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"651c0095\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5076efc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c312940\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30f6111f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"702c4243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14d5a170\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"68085d9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"213264b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce35e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1b06d9b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"66e5f60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6da3c272\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"11c44852\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"37a6947\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"17246113\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"433582bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"19974920\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7732fdb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6955a7dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"5c2916bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26298e4d\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"44d1d092\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aa59f75\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f8745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"30a84678\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"68c3433e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"51664539\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"444410ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"6c721b25\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"292ea9d7\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4fd6e702\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"23df32e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c4b9ba6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8821b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73c329d8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"595378c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"3e5aafbc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43c5f86b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"386d9427\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"26470717\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21761b71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"13afe1f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5aeba261\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4362823d\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca1fd2c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4bee4b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6091e400\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"7884a842\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a385ed0\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63b29bad\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5dfdb0e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55d9f06d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"17757aa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"646e0f85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"33f696d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2130e1bb\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6586b003\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7091278a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3fb96793\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a4aa755\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"de64d87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"5d14ce8e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"792b7fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"259ce850\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1951121c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"14625d9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f25f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4b82280c\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"382e016c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f931ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d545e78\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1fb87e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"420245dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4415f61c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"115c6dc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"561d403d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40e4c40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6b48a451\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f9b1cd\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a344a63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e85e9dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"5daba933\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"621891d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f9869c3\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43d568a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"488bb07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"d58d58d\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2debcd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51cd84ed\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48b63f75\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"769e164b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6d20d374\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"5d1c1ec0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7ce5e5ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49595774\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"312d225\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc3acbe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6d28a264\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c16d293\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"588a9087\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e1d6ae4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"707cf73\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28635a7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2662f607\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f606605\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"666a0646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e4b4cf9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4a689e2c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7f7803ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"21276a47\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77d45e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"67f4910a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3acfce0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d521168\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bd87378\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"786bf465\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24675757\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"73e34bc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c56ab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"3a1ad6ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"72142cca\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1afb4c21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6fb2d60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16a08e33\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"120d963e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e8f14fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c16c5fb\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"46451c17\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1cb3ab76\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6c4c87aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7750131a\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"487419f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"27495080\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"5cbc8cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eefad99\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3f4029f5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"33d7146\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dded81a\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"1bd4678a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d494489\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"55ce941b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2187c184\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2861b6d9\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"56de06c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"65e0494\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ffe2c4f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e910a15\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32f3a645\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"43ebacbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f56a380\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"348d23b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"518e1884\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3601c013\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4ae87b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"5ca03103\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24502882\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75709bbe\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a3c541\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15d84dd3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1524a97d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7951f25d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(219,58,'_elementor_edit_mode','builder'),(220,58,'_elementor_template_type','section'),(221,58,'_elementor_version','3.11.5'),(222,58,'_elementor_pro_version','3.11.6'),(223,58,'_elementor_data','[]'),(224,13,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(225,13,'template_type','single-home'),(226,13,'include_in_zip','1'),(227,13,'elementor_pro_required',NULL),(228,13,'wp_page_template','elementor_canvas'),(229,13,'_elementor_import_session_id','6413f93187d95'),(230,59,'_elementor_edit_mode','builder'),(231,59,'_elementor_template_type','section'),(232,59,'_elementor_version','3.11.5'),(233,59,'_elementor_pro_version','3.11.6'),(234,60,'_wp_attached_file','2023/03/abstract-multicolor-vibrant-background-4B9KSZJ_2.jpg'),(235,60,'_elementor_import_session_id','6413f93187d95'),(236,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1241;s:4:\"file\";s:60:\"2023/03/abstract-multicolor-vibrant-background-4B9KSZJ_2.jpg\";s:8:\"filesize\";i:198471;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"abstract-multicolor-vibrant-background-4B9KSZJ_2-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24283;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"abstract-multicolor-vibrant-background-4B9KSZJ_2-1024x529.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70026;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"abstract-multicolor-vibrant-background-4B9KSZJ_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20370;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"abstract-multicolor-vibrant-background-4B9KSZJ_2-768x397.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48522;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"abstract-multicolor-vibrant-background-4B9KSZJ_2-1536x794.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:794;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130429;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:62:\"abstract-multicolor-vibrant-background-4B9KSZJ_2-2048x1059.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1059;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:74:\"Vibrant multicolor abstract background, creative texture with color lights\";s:17:\"created_timestamp\";s:10:\"1578210560\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:3:\"1.6\";s:5:\"title\";s:38:\"Vibrant multicolor abstract background\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:29:{i:0;s:8:\"abstract\";i:1;s:4:\"blue\";i:2;s:4:\"pink\";i:3;s:10:\"background\";i:4;s:7:\"festive\";i:5;s:6:\"violet\";i:6;s:5:\"green\";i:7;s:5:\"light\";i:8;s:7:\"holiday\";i:9;s:5:\"disco\";i:10;s:4:\"neon\";i:11;s:7:\"texture\";i:12;s:5:\"color\";i:13;s:10:\"multicolor\";i:14;s:8:\"colorful\";i:15;s:4:\"blur\";i:16;s:3:\"ray\";i:17;s:7:\"vibrant\";i:18;s:6:\"bright\";i:19;s:5:\"stain\";i:20;s:5:\"happy\";i:21;s:3:\"joy\";i:22;s:9:\"wallpaper\";i:23;s:4:\"glow\";i:24;s:7:\"fantasy\";i:25;s:3:\"art\";i:26;s:8:\"creative\";i:27;s:7:\"rainbow\";i:28;s:10:\"copy space\";}}}'),(237,60,'_elementor_source_image_hash','8ad2d1fe5974f5acff35e201f8358431f28f1c69'),(238,61,'_wp_attached_file','2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg'),(239,61,'_elementor_import_session_id','6413f93187d95'),(240,61,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:49:\"2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\";s:8:\"filesize\";i:81222;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16669;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56114;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11350;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39676;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(241,61,'_elementor_source_image_hash','2e7cdf3a8f56c44732a3c3ef14e4918d68ae41c6'),(242,62,'_wp_attached_file','2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg'),(243,62,'_elementor_import_session_id','6413f93187d95'),(244,62,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:41:\"2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\";s:8:\"filesize\";i:65916;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"mae-mu-GnWKTJlMYsQ-unsplash_2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11442;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41391;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"mae-mu-GnWKTJlMYsQ-unsplash_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8516;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"mae-mu-GnWKTJlMYsQ-unsplash_2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27678;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(245,62,'_elementor_source_image_hash','03c8b6e10e59659dd147e593addb662061e2716a'),(246,63,'_wp_attached_file','2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg'),(247,63,'_elementor_import_session_id','6413f93187d95'),(248,63,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:48:\"2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\";s:8:\"filesize\";i:217127;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20664;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122937;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12179;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75023;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(249,63,'_elementor_source_image_hash','90465ada1555c14dd7603c3bd914faf14335d89b'),(250,64,'_wp_attached_file','2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg'),(251,64,'_elementor_import_session_id','6413f93187d95'),(252,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:43:\"2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\";s:8:\"filesize\";i:82029;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"ian-dooley-y_CSTKJ0bEs-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15189;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"ian-dooley-y_CSTKJ0bEs-unsplash-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54733;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"ian-dooley-y_CSTKJ0bEs-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10190;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"ian-dooley-y_CSTKJ0bEs-unsplash-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37712;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(253,64,'_elementor_source_image_hash','4020a65893e172e4d6c87c7dce9f83ecbdc514db'),(254,65,'_wp_attached_file','2023/03/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg'),(255,65,'_elementor_import_session_id','6413f93187d95'),(256,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1420;s:4:\"file\";s:77:\"2023/03/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg\";s:8:\"filesize\";i:207456;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:77:\"beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min-300x178.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10407;}s:5:\"large\";a:5:{s:4:\"file\";s:78:\"beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min-1024x606.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61071;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:77:\"beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5186;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:77:\"beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min-768x454.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39346;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:78:\"beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min-1536x909.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:909;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118739;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:79:\"beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min-2048x1212.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194553;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(257,65,'_elementor_source_image_hash','d30a27c61f7f3842ec1facdf8e8397daff9dd893'),(258,66,'_wp_attached_file','2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg'),(259,66,'_elementor_import_session_id','6413f93187d95'),(260,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:50:\"2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg\";s:8:\"filesize\";i:83515;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"matheus-ferrero-OsMwKgqSGWU-unsplash_3-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13360;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"matheus-ferrero-OsMwKgqSGWU-unsplash_3-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62427;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"matheus-ferrero-OsMwKgqSGWU-unsplash_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10212;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"matheus-ferrero-OsMwKgqSGWU-unsplash_3-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62427;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"matheus-ferrero-OsMwKgqSGWU-unsplash_3-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(261,66,'_elementor_source_image_hash','0c1184769d21c57a1492ca86ee5bce4821e76aba'),(262,67,'_wp_attached_file','2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg'),(263,67,'_elementor_import_session_id','6413f93187d95'),(264,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:46:\"2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg\";s:8:\"filesize\";i:183889;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"jakob-owens-iYDtWGKZ-0Q-unsplash_3-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16886;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"jakob-owens-iYDtWGKZ-0Q-unsplash_3-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119060;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"jakob-owens-iYDtWGKZ-0Q-unsplash_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11554;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"jakob-owens-iYDtWGKZ-0Q-unsplash_3-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119060;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"jakob-owens-iYDtWGKZ-0Q-unsplash_3-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252857;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(265,67,'_elementor_source_image_hash','eba0788c30f25bbf5ec189467076f89542b9f3d3'),(266,68,'_wp_attached_file','2023/03/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg'),(267,68,'_elementor_import_session_id','6413f93187d95'),(268,68,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2450;s:6:\"height\";i:1634;s:4:\"file\";s:69:\"2023/03/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg\";s:8:\"filesize\";i:238192;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33667;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27703;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67076;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:71:\"beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155797;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:71:\"beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232288;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7RM3\";s:7:\"caption\";s:98:\"Cropped image of a beautiful young asian woman with long dark hair standing infront of a neon wall\";s:17:\"created_timestamp\";s:10:\"1507524727\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"65\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:47:\"Beautiful young asian woman with long dark hair\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:42:{i:0;s:5:\"light\";i:1;s:6:\"makeup\";i:2;s:6:\"beauty\";i:3;s:9:\"beautiful\";i:4;s:4:\"high\";i:5;s:4:\"girl\";i:6;s:10:\"background\";i:7;s:5:\"style\";i:8;s:8:\"colorful\";i:9;s:5:\"woman\";i:10;s:5:\"disco\";i:11;s:6:\"bright\";i:12;s:4:\"neon\";i:13;s:12:\"multicolored\";i:14;s:6:\"colour\";i:15;s:4:\"face\";i:16;s:4:\"blue\";i:17;s:10:\"multicolor\";i:18;s:6:\"posing\";i:19;s:7:\"fashion\";i:20;s:6:\"trendy\";i:21;s:6:\"violet\";i:22;s:10:\"brilliance\";i:23;s:7:\"glitter\";i:24;s:8:\"manicure\";i:25;s:4:\"glow\";i:26;s:8:\"sparkles\";i:27;s:5:\"color\";i:28;s:4:\"skin\";i:29;s:5:\"vivid\";i:30;s:3:\"art\";i:31;s:5:\"vogue\";i:32;s:6:\"people\";i:33;s:5:\"shine\";i:34;s:7:\"glowing\";i:35;s:6:\"purple\";i:36;s:9:\"colourful\";i:37;s:6:\"female\";i:38;s:7:\"closeup\";i:39;s:11:\"ultraviolet\";i:40;s:5:\"asian\";i:41;s:7:\"cropped\";}}}'),(269,68,'_elementor_source_image_hash','7beee129575499ee3f13913a2c05c33c92ac11dd'),(270,59,'_elementor_data','[{\"id\":\"2f45631f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":60,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/abstract-multicolor-vibrant-background-4B9KSZJ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"4d8fa773\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bb32825\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6166e9e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c7a371c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21fa862e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"450\",\"bottom\":\"30\",\"left\":\"450\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75491a9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"645a0a08\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35f60f62\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cff502f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeIn\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"16b2b6da\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1cb26d81\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b4d97b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"411cad50\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"424a4176\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e729340\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9bc552\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"355aa27b\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a24dadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5beb15e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"},{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"},{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_size_mobile\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6a94cad1\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32709df4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7fda4b7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fbb37ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT CAN WE OFFER FOR YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4699cc29\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4341959\",\"elType\":\"widget\",\"settings\":{\"title\":\"our best service\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5efffee5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b64160\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7989a3f8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-smart\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1be57050\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEVELOPMENT\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d45a130\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6898dd7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"33e6e18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2f6d0792\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Design-3\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5edfd494\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANALYSIS\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24cb55f2\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f3bc9c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"760f5df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5b90a862\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-flower\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1cb789a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48733dc\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d72c9ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56daf6ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":65,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"00\",\"isLinked\":false},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":-390,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aea17a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"35ac5d9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"80795fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAY PRODUCTIVE AND CREATIVE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"120601a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1090fc12\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"97338e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis.\\u00a0<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b8dd68f\",\"elType\":\"widget\",\"settings\":{\"text\":\"READ MORE\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fafa552\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"568af8d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ab34f25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"77aa97c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2280a1d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7eeed54b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18fb783a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7e8608ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57729c88\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6ab3fc70\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"677437e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7aade116\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3066cfd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18ee64c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bb3d663\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7216af6\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LATEST CASE STUDIES\",\"align\":\"right\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76eb5c12\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"-100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"600d5787\",\"elType\":\"widget\",\"settings\":{\"title\":\"our works\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"40\",\"left\":\"-100\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3369f9e\",\"elType\":\"widget\",\"settings\":{\"text\":\"view all\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"80\",\"left\":\"-100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee87351\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Photography\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"},{\"id\":\"6cdb013e\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"3d Illustration\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false},{\"id\":\"2666bb09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3443e0c6\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Product Design\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":66,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":638,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":495,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"},{\"id\":\"6ddde3e2\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Packaging\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":67,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":590,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71ba9570\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"4d0ce7ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4d9a5a93\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Rating\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"51d04f4d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":231,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"1bdec8e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"ffe839a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"36e95be6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-team2\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4cb37ca3\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":132,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6269e61d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners Worldwide\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7e79cc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"6d777d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-hand_shake\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"43dec80\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":118,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"d52c4e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2233af49\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"7012ef37\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-trophy1\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68af5bd1\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":55,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"b00c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43803c06\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_size\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4df485b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5710ed33\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4420238e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7582fb51\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53dd5e12\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"999d77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"69c024c\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"6fb29266\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"343f2b64\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ebea9f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":68,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dda2fec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"164c009b\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bd65280\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"68161d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(271,69,'_elementor_edit_mode','builder'),(272,69,'_elementor_template_type','section'),(273,69,'_elementor_version','3.11.5'),(274,69,'_elementor_pro_version','3.11.6'),(275,69,'_elementor_data','[]'),(276,59,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(277,59,'template_type','single-home'),(278,59,'include_in_zip','1'),(279,59,'elementor_pro_required',NULL),(280,59,'wp_page_template','elementor_canvas'),(281,59,'_elementor_import_session_id','6413f93187d95'),(282,70,'_elementor_edit_mode','builder'),(283,70,'_elementor_template_type','page'),(284,70,'_elementor_version','3.11.5'),(285,70,'_elementor_pro_version','3.11.6'),(286,71,'_wp_attached_file','2023/03/young-man-with-interesting-style-U5YJBRD_3.jpg'),(287,71,'_elementor_import_session_id','6413f93187d95'),(288,71,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1501;s:4:\"file\";s:54:\"2023/03/young-man-with-interesting-style-U5YJBRD_3.jpg\";s:8:\"filesize\";i:180762;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"young-man-with-interesting-style-U5YJBRD_3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32567;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"young-man-with-interesting-style-U5YJBRD_3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135576;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"young-man-with-interesting-style-U5YJBRD_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24891;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"young-man-with-interesting-style-U5YJBRD_3-768x769.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86654;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T3\";s:7:\"caption\";s:61:\"Portrit of trendy handsome man in sunglasses at photo studio.\";s:17:\"created_timestamp\";s:10:\"1575493476\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:32:\"Young man with interesting style\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:5:\"toned\";i:1;s:7:\"unusual\";i:2;s:3:\"red\";i:3;s:4:\"blue\";i:4;s:5:\"light\";i:5;s:4:\"cold\";i:6;s:6:\"shades\";i:7;s:8:\"portrait\";i:8;s:3:\"one\";i:9;s:9:\"cyberpunk\";i:10;s:5:\"young\";i:11;s:10:\"attractive\";i:12;s:9:\"hairstyle\";i:13;s:5:\"beard\";i:14;s:9:\"moustache\";i:15;s:6:\"posing\";i:16;s:7:\"electro\";i:17;s:6:\"modern\";i:18;s:5:\"style\";i:19;s:5:\"retro\";i:20;s:6:\"future\";i:21;s:8:\"handsome\";i:22;s:7:\"groomed\";i:23;s:7:\"glasses\";i:24;s:10:\"reflection\";i:25;s:4:\"male\";i:26;s:5:\"adult\";i:27;s:6:\"studio\";i:28;s:3:\"man\";i:29;s:7:\"fashion\";i:30;s:6:\"people\";i:31;s:12:\"professional\";i:32;s:4:\"cool\";i:33;s:9:\"lifestyle\";i:34;s:10:\"sunglasses\";i:35;s:3:\"guy\";i:36;s:6:\"person\";i:37;s:10:\"background\";i:38;s:11:\"alternative\";i:39;s:6:\"indoor\";i:40;s:7:\"culture\";i:41;s:6:\"scenic\";i:42;s:11:\"extravagant\";i:43;s:7:\"bearded\";i:44;s:7:\"stylish\";i:45;s:6:\"casual\";i:46;s:4:\"look\";i:47;s:8:\"necklace\";i:48;s:7:\"pensive\";}}}'),(289,71,'_elementor_source_image_hash','b6189a68d8fb0a4d0dfb1b3c29fe5d2d711558b9'),(290,72,'_wp_attached_file','2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg'),(291,72,'_elementor_import_session_id','6413f93187d95'),(292,72,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:63:\"2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg\";s:8:\"filesize\";i:220936;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41001;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172465;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27489;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114588;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:110:\"Pretty woman working or searching and order on laptop and lying on sofa. Lifestyle and work from home concept.\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:41:\"Woman working on laptop and lying on sofa\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:33:{i:0;s:5:\"woman\";i:1;s:8:\"watching\";i:2;s:5:\"media\";i:3;s:6:\"laptop\";i:4;s:6:\"female\";i:5;s:8:\"internet\";i:6;s:5:\"order\";i:7;s:7:\"booking\";i:8;s:9:\"lifestyle\";i:9;s:4:\"home\";i:10;s:4:\"room\";i:11;s:10:\"technology\";i:12;s:6:\"living\";i:13;s:5:\"using\";i:14;s:4:\"sofa\";i:15;s:5:\"lying\";i:16;s:5:\"couch\";i:17;s:5:\"young\";i:18;s:4:\"girl\";i:19;s:7:\"smiling\";i:20;s:6:\"casual\";i:21;s:5:\"happy\";i:22;s:5:\"adult\";i:23;s:6:\"person\";i:24;s:11:\"comfortable\";i:25;s:6:\"people\";i:26;s:10:\"relaxation\";i:27;s:10:\"attractive\";i:28;s:7:\"leisure\";i:29;s:6:\"modern\";i:30;s:8:\"computer\";i:31;s:9:\"beautiful\";i:32;s:6:\"search\";}}}'),(293,72,'_elementor_source_image_hash','354ba46b7a4c30f835240a7077e745898737355e'),(294,70,'_elementor_data','[{\"id\":\"61ef411d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":68,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57b35edd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"237da969\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7002b420\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"929358d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"gradient\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":80,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"background_color\":\"#251AFF\",\"background_color_b\":\"#E84829\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":210,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":300},\"elements\":[{\"id\":\"90ea201\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_3.jpg\"},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c3f4850\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"6cd39560\",\"elType\":\"widget\",\"settings\":{\"title\":\"WELCOME TO OUR AGENCY\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15d01ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a9bc061\",\"elType\":\"widget\",\"settings\":{\"title\":\"the best agency\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c014562\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b95d714\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital project planning\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"In-House digital consulting\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Permanent and contract recruitement\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Developers and technical architects\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3e91a3fd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95d521a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2236e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":0},\"elements\":[{\"id\":\"31345786\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Rating\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5e8f631c\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":231},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"32c33c77\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7c9878a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ccacb53\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-team2\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"417ae507\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":132},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"88d1bf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners Worldwide\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"99dfab0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"8c1bd1d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-hand_shake\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2378ca37\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":118},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"3959e028\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3ed2d8fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"78be139\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-trophy1\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bdb6b52\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":55},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6cea10d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49d630bc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"375ba6ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ce0e764\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING THE BEST THINGS FOR YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"413ca708\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13d37ea7\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"625f8155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e35836c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"645f31ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bf1a92c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":200},\"elements\":[{\"id\":\"7597cdc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product Design\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5b0d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdb8c66\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2163ae4b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d99f2a9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"1e4691db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":200},\"elements\":[{\"id\":\"6a9918f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Development\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4fe2c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23f5fc84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2da71dcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"521c457f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"243c12f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":72,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a141f97\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b82cf64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"26900382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4dbc958e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":200},\"elements\":[{\"id\":\"29a131f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brain Storming\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c2e48df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"234a9221\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"228874e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7010df48\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4cd39da1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":200},\"elements\":[{\"id\":\"73fe727\",\"elType\":\"widget\",\"settings\":{\"title\":\"Marketing\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"623733b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"347c0b97\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2927b605\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"30a3e1e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"49a74766\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30ea4443\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"50cd206f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73ee7469\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT THEY SAY ABOUT US\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6be16f32\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f2e1a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonials\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"410dc9af\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"24e23faa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3df071bb\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"19fffb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"42158941\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"360e9539\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"989424e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4132138a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaa84a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"351101d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"950c4bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"174b22a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"3b668c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56526e1a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"76bf37b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6038abd0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4c3cb508\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ec315b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20d40236\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5f3fb0f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4604877c\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21b67fd8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8e1dc09\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(295,73,'_elementor_edit_mode','builder'),(296,73,'_elementor_template_type','page'),(297,73,'_elementor_version','3.11.5'),(298,73,'_elementor_pro_version','3.11.6'),(299,73,'_elementor_data','[]'),(300,70,'_elementor_page_assets','a:1:{s:6:\"styles\";a:31:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";}}'),(301,70,'template_type','single-page'),(302,70,'include_in_zip','1'),(303,70,'elementor_pro_required',NULL),(304,70,'wp_page_template','elementor_canvas'),(305,70,'_elementor_import_session_id','6413f93187d95'),(306,74,'_elementor_edit_mode','builder'),(307,74,'_elementor_template_type','page'),(308,74,'_elementor_version','3.11.5'),(309,74,'_elementor_pro_version','3.11.6'),(310,75,'_wp_attached_file','2023/03/developers-working-in-masks-F97S4DR_2.jpg'),(311,75,'_elementor_import_session_id','6413f93187d95'),(312,75,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1317;s:4:\"file\";s:49:\"2023/03/developers-working-in-masks-F97S4DR_2.jpg\";s:8:\"filesize\";i:221478;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"developers-working-in-masks-F97S4DR_2-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30412;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"developers-working-in-masks-F97S4DR_2-1024x562.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"developers-working-in-masks-F97S4DR_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23966;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"developers-working-in-masks-F97S4DR_2-768x421.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71083;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"developers-working-in-masks-F97S4DR_2-1536x843.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:843;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176910;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"developers-working-in-masks-F97S4DR_2-2048x1124.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1124;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:268139;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:96:\"Group of developers in protective masks sitting in front of computers and working in dark office\";s:17:\"created_timestamp\";s:10:\"1597325283\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:27:\"Developers working in masks\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:32:{i:0;s:6:\"Action\";i:1;s:8:\"Activity\";i:2;s:5:\"Adult\";i:3;s:19:\"Caucasian Ethnicity\";i:4;s:8:\"Computer\";i:5;s:19:\"Computer Programmer\";i:6;s:13:\"Concentration\";i:7;s:10:\"Cybercrime\";i:8;s:13:\"Cybersecurity\";i:9;s:4:\"Dark\";i:10;s:9:\"Expertise\";i:11;s:3:\"Fun\";i:12;s:4:\"Game\";i:13;s:5:\"Gamer\";i:14;s:15:\"Group Of People\";i:15;s:6:\"Hacker\";i:16;s:7:\"Indoors\";i:17;s:16:\"Leisure Activity\";i:18;s:10:\"Lifestyles\";i:19;s:7:\"Looking\";i:20;s:8:\"Outdoors\";i:21;s:6:\"People\";i:22;s:15:\"Protective Mask\";i:23;s:19:\"Protective Workwear\";i:24;s:20:\"Recreational Pursuit\";i:25;s:7:\"Sitting\";i:26;s:4:\"Team\";i:27;s:8:\"Teamwork\";i:28;s:10:\"Technology\";i:29;s:8:\"Pandemic\";i:30;s:8:\"Epidemic\";i:31;s:7:\"Playing\";}}}'),(313,75,'_elementor_source_image_hash','821f10681edb95f8cc58a276d49285652cf58021'),(314,76,'_wp_attached_file','2023/03/placeholder-2.png'),(315,76,'_elementor_import_session_id','6413f93187d95'),(316,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/03/placeholder-2.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-2-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-2-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(317,76,'_elementor_source_image_hash','46ac19dd5ae018233054b06500ee4df381710c79'),(318,77,'_wp_attached_file','2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png'),(319,77,'_elementor_import_session_id','6413f93187d95'),(320,77,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:77:\"2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png\";s:8:\"filesize\";i:201807;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:77:\"trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109739;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:77:\"trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30346;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:77:\"trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:696322;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(321,77,'_elementor_source_image_hash','56a651824012770922b56dec2830bd3db50a2758'),(322,74,'_elementor_data','[{\"id\":\"6370eba3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":75,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/developers-working-in-masks-F97S4DR_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"589a9bb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31752a31\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR SERVICES\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e6eb0de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"3151bfe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25a38933\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT CAN WE OFFER FOR YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48e26a98\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c6ffac4\",\"elType\":\"widget\",\"settings\":{\"title\":\"our best service\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2566d0c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cb67982\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"12a8c24c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-smart\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"206d3a5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEVELOPMENT\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"337e9352\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"525907b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2a470345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"16165228\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Design-3\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"431b749b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANALYSIS\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b4426de\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16618779\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4c7919ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"454fd2a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-flower\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6ba18dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f60d1c8\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7149b04\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15d833d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":65,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"00\",\"isLinked\":false},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":-390,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cc79b3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10d1e7f7\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"#\",\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#251AFF\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"__globals__\":{\"ekit_video_popup_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=accent\"},\"ekit_video_popup_btn_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_delay\":400,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"10f8b817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65455614\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d2ad98\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f236e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"190f3ddd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis.\\u00a0<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4cc99097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Creative Project 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"0fc8b67\"},{\"text\":\"Digital project planning and resourcing\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"ff9e4ef\"},{\"text\":\"Marketing Campaign\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"e567e1b\"},{\"text\":\"Product Consultant 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"b184e13\"},{\"text\":\"Head of Design and Marketing Department\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"819c19a\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5280cc17\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"323bbb99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"15f4fe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"CHOOSE YOUR PLANS\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b9f680\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3c00d65e\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eeb4ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4045880c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"border_hover_border\":\"solid\",\"border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"b0b292a\",\"elType\":\"widget\",\"settings\":{\"title\":\"BASIC\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5068e07\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$119<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6972bfcb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35fe4cc8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"56619bf7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand &amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37f71881\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dbcc2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"820083f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c056664\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10d31fc8\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"23a4cce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"14ca62b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"STANDARD\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f7edce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$129<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\",\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32900226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75089613\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e880a36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand\\u00a0&amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f81d21e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77001382\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fe02fc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"362d6337\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52d9c98\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"31055104\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"border_hover_border\":\"solid\",\"border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"12e443e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXPERT\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ff753a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$139<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29248d50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dbbd33f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52224830\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand\\u00a0&amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4dfbee32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"744f92e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"53f295dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23c466ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fdcdb2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5467ec3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62390ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f3bf8da\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5615327b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":76,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-2.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7d0d48cb\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"49458bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"44526525\",\"elType\":\"widget\",\"settings\":{\"title\":\"LET\'S WORK TOGETHER \",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70120a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554bb649\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f06444e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8838191\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"5e76ead5\",\"elType\":\"widget\",\"settings\":{\"title\":\"UNIQUE DIGITAL EXPERIENCES\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f26f04e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7b59cd92\",\"elType\":\"widget\",\"settings\":{\"title\":\"our special skills\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"536416e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29dbaa0d\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"UI\\/UX\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":85},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"dd128ab\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"BRANDING\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"f84ea68\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"ILLUSTRATION\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":95},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"2ca6b1c2\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"3D PROJECT\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":95},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"}],\"isInner\":false},{\"id\":\"4ab7ff71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"align\":\"flex-end\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"15b38a7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68a65bce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-185\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-123\",\"right\":\"218\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"100\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(323,78,'_elementor_edit_mode','builder'),(324,78,'_elementor_template_type','page'),(325,78,'_elementor_version','3.11.5'),(326,78,'_elementor_pro_version','3.11.6'),(327,78,'_elementor_data','[]'),(328,74,'_elementor_page_assets','a:1:{s:6:\"styles\";a:19:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";}}'),(329,74,'template_type','single-page'),(330,74,'include_in_zip','1'),(331,74,'elementor_pro_required',NULL),(332,74,'wp_page_template','elementor_canvas'),(333,74,'_elementor_import_session_id','6413f93187d95'),(334,79,'_elementor_edit_mode','builder'),(335,79,'_elementor_template_type','page'),(336,79,'_elementor_version','3.11.5'),(337,79,'_elementor_pro_version','3.11.6'),(338,80,'_wp_attached_file','2023/03/couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2.jpg'),(339,80,'_elementor_import_session_id','6413f93187d95'),(340,80,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1298;s:4:\"file\";s:66:\"2023/03/couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2.jpg\";s:8:\"filesize\";i:269026;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28602;}s:5:\"large\";a:5:{s:4:\"file\";s:67:\"couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2-1024x554.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93177;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25035;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:66:\"couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2-768x415.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62101;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:67:\"couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2-1536x831.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:831;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176841;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:68:\"couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2-2048x1108.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1108;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284378;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T3\";s:7:\"caption\";s:82:\"Trendy people in fashionable clothing are posing for photographer at photo studio.\";s:17:\"created_timestamp\";s:10:\"1575497059\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:44:\"Couple of hipsters under red and blue lights\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:5:\"toned\";i:1;s:7:\"unusual\";i:2;s:3:\"red\";i:3;s:4:\"blue\";i:4;s:5:\"light\";i:5;s:4:\"cold\";i:6;s:6:\"shades\";i:7;s:8:\"portrait\";i:8;s:3:\"two\";i:9;s:9:\"cyberpunk\";i:10;s:5:\"young\";i:11;s:10:\"attractive\";i:12;s:9:\"hairstyle\";i:13;s:5:\"beard\";i:14;s:9:\"moustache\";i:15;s:6:\"posing\";i:16;s:7:\"electro\";i:17;s:9:\"checkered\";i:18;s:6:\"blazer\";i:19;s:6:\"modern\";i:20;s:5:\"style\";i:21;s:5:\"retro\";i:22;s:6:\"future\";i:23;s:4:\"cool\";i:24;s:8:\"electric\";i:25;s:7:\"musical\";i:26;s:4:\"love\";i:27;s:10:\"sunglasses\";i:28;s:7:\"embrace\";i:29;s:4:\"girl\";i:30;s:8:\"standing\";i:31;s:7:\"fashion\";i:32;s:4:\"look\";i:33;s:6:\"people\";i:34;s:8:\"together\";i:35;s:7:\"hipster\";i:36;s:6:\"beauty\";i:37;s:8:\"handsome\";i:38;s:6:\"couple\";i:39;s:5:\"woman\";i:40;s:3:\"man\";i:41;s:12:\"relationship\";i:42;s:6:\"friend\";i:43;s:5:\"model\";i:44;s:9:\"beautiful\";i:45;s:6:\"casual\";i:46;s:6:\"trendy\";i:47;s:8:\"necklace\";i:48;s:7:\"pensive\";}}}'),(341,80,'_elementor_source_image_hash','db71825ff2ebc06168519f8ba390a6064287b09b'),(342,79,'_elementor_data','[{\"id\":\"5ac4d328\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":75,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/developers-working-in-masks-F97S4DR_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae5cddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75266775\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR SERVICES\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"283938a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae4b3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"952ce16\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANOTHER WAY OF CREATIVE THINKING\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18cf3618\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3349f513\",\"elType\":\"widget\",\"settings\":{\"title\":\"our best service\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f31ee2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3efecf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"ccffeb0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-smart\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"51ce817b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANALYSIS\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18ea3154\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c0bef92\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"63ca41ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"1a69e047\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Design-3\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7534549e\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEVELOPMENT\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e18c7ad\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ce6bd19\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6f55ab32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"158a9f97\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-flower\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4a6cdd00\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a5e4377\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2801ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bb2e1bc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6155bda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"286d4cf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"613bc434\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"538ec90a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6580613b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7909d866\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"13120e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f06bc25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"677bea0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"156a2919\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"3659b8d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"504fc14f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c20a847\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":80,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"00\",\"isLinked\":false},\"background_position_tablet\":\"center center\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":-390,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fb2c91e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"7a8cb097\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"247e774b\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORY OF A BRAND\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"132b5fe5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"49232011\",\"elType\":\"widget\",\"settings\":{\"title\":\"our vision\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebcd78c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c08ac26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\",\"border_border\":\"solid\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f4a3eb6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c148b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"474e5311\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LATEST CASE STUDIES\",\"align\":\"right\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f80d02b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"-100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"518abefe\",\"elType\":\"widget\",\"settings\":{\"title\":\"our works\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"40\",\"left\":\"-100\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a93649\",\"elType\":\"widget\",\"settings\":{\"text\":\"view all\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"80\",\"left\":\"-100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73af62ee\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Photography\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"},{\"id\":\"30b51f52\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"3d Illustration\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false},{\"id\":\"1e744434\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43e2cbc5\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Product Design\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":66,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":638,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":495,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"},{\"id\":\"6c919051\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Packaging\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":67,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":590,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d08b034\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"249394aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cc91924\",\"elType\":\"widget\",\"settings\":{\"title\":\"LET\'S WORK TOGETHER \",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(343,81,'_elementor_edit_mode','builder'),(344,81,'_elementor_template_type','page'),(345,81,'_elementor_version','3.11.5'),(346,81,'_elementor_pro_version','3.11.6'),(347,81,'_elementor_data','[]'),(348,79,'_elementor_page_assets','a:1:{s:6:\"styles\";a:14:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";}}'),(349,79,'template_type','single-page'),(350,79,'include_in_zip','1'),(351,79,'elementor_pro_required',NULL),(352,79,'wp_page_template','elementor_canvas'),(353,79,'_elementor_import_session_id','6413f93187d95'),(354,82,'_elementor_edit_mode','builder'),(355,82,'_elementor_template_type','page'),(356,82,'_elementor_version','3.11.5'),(357,82,'_elementor_pro_version','3.11.6'),(358,83,'_wp_attached_file','2023/03/portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2.jpg'),(359,83,'_elementor_import_session_id','6413f93187d95'),(360,83,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1096;s:4:\"file\";s:72:\"2023/03/portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2.jpg\";s:8:\"filesize\";i:214194;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2-300x137.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29676;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2-1024x468.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79792;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25385;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2-768x351.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58320;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:73:\"portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2-1536x701.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131546;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:73:\"portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2-2048x935.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:935;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193211;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7RM2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1487286009\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:3:\"art\";i:1;s:10:\"attractive\";i:2;s:10:\"background\";i:3;s:9:\"beautiful\";i:4;s:6:\"beauty\";i:5;s:4:\"blue\";i:6;s:6:\"bright\";i:7;s:9:\"cinematic\";i:8;s:4:\"city\";i:9;s:5:\"color\";i:10;s:8:\"colorful\";i:11;s:7:\"concept\";i:12;s:6:\"design\";i:13;s:8:\"dramatic\";i:14;s:4:\"face\";i:15;s:7:\"fashion\";i:16;s:6:\"female\";i:17;s:6:\"future\";i:18;s:10:\"futuristic\";i:19;s:4:\"girl\";i:20;s:4:\"hair\";i:21;s:6:\"jacket\";i:22;s:4:\"lady\";i:23;s:7:\"leather\";i:24;s:9:\"lifestyle\";i:25;s:5:\"light\";i:26;s:6:\"lights\";i:27;s:4:\"male\";i:28;s:3:\"man\";i:29;s:5:\"model\";i:30;s:4:\"neon\";i:31;s:5:\"night\";i:32;s:5:\"party\";i:33;s:6:\"people\";i:34;s:6:\"person\";i:35;s:8:\"portrait\";i:36;s:9:\"portraits\";i:37;s:6:\"pretty\";i:38;s:3:\"red\";i:39;s:5:\"scifi\";i:40;s:4:\"sexy\";i:41;s:5:\"space\";i:42;s:6:\"street\";i:43;s:5:\"style\";i:44;s:10:\"sunglasses\";i:45;s:10:\"technology\";i:46;s:5:\"white\";i:47;s:5:\"woman\";i:48;s:5:\"young\";}}}'),(361,83,'_elementor_source_image_hash','a778711931696a74531cb6b4dd42f798add6878b'),(362,82,'_elementor_data','[{\"id\":\"e7f0f8c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":83,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40e53652\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f2ed340\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTFOLIO\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26856792\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"195d67c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f4f049b\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PORTFOLIO\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4492f705\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"49feeff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"our works\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(363,84,'_elementor_edit_mode','builder'),(364,84,'_elementor_template_type','page'),(365,84,'_elementor_version','3.11.5'),(366,84,'_elementor_pro_version','3.11.6'),(367,84,'_elementor_data','[]'),(368,82,'_elementor_page_assets','a:1:{s:6:\"styles\";a:4:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";}}'),(369,82,'template_type','single-page'),(370,82,'include_in_zip','1'),(371,82,'elementor_pro_required',NULL),(372,82,'wp_page_template','elementor_canvas'),(373,82,'_elementor_import_session_id','6413f93187d95'),(374,85,'_elementor_edit_mode','builder'),(375,85,'_elementor_template_type','page'),(376,85,'_elementor_version','3.11.5'),(377,85,'_elementor_pro_version','3.11.6'),(378,85,'_elementor_data','[{\"id\":\"461f2c46\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":83,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"435683b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5ef63b0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTFOLIO\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c4fa9c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1683fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"610f205a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PORTFOLIO\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a836873\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"478c9b1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"our works\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(379,86,'_elementor_edit_mode','builder'),(380,86,'_elementor_template_type','page'),(381,86,'_elementor_version','3.11.5'),(382,86,'_elementor_pro_version','3.11.6'),(383,86,'_elementor_data','[]'),(384,85,'_elementor_page_assets','a:1:{s:6:\"styles\";a:4:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";}}'),(385,85,'template_type','single-page'),(386,85,'include_in_zip','1'),(387,85,'elementor_pro_required',NULL),(388,85,'wp_page_template','elementor_canvas'),(389,85,'_elementor_import_session_id','6413f93187d95'),(390,87,'_elementor_edit_mode','builder'),(391,87,'_elementor_template_type','page'),(392,87,'_elementor_version','3.11.5'),(393,87,'_elementor_pro_version','3.11.6'),(394,88,'_wp_attached_file','2023/03/multiethnic-startup-business-team-on-meeting-PNMFSET_2.jpg'),(395,88,'_elementor_import_session_id','6413f93187d95'),(396,88,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1262;s:4:\"file\";s:66:\"2023/03/multiethnic-startup-business-team-on-meeting-PNMFSET_2.jpg\";s:8:\"filesize\";i:260345;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"multiethnic-startup-business-team-on-meeting-PNMFSET_2-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33246;}s:5:\"large\";a:5:{s:4:\"file\";s:67:\"multiethnic-startup-business-team-on-meeting-PNMFSET_2-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109342;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"multiethnic-startup-business-team-on-meeting-PNMFSET_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27750;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:66:\"multiethnic-startup-business-team-on-meeting-PNMFSET_2-768x404.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76773;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:67:\"multiethnic-startup-business-team-on-meeting-PNMFSET_2-1536x808.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:808;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192264;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:68:\"multiethnic-startup-business-team-on-meeting-PNMFSET_2-2048x1077.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1077;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:294535;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:130:\"Multiethnic startup business team on meeting in modern bright office interior brainstorming, working on laptop and tablet computer\";s:17:\"created_timestamp\";s:10:\"1470126064\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:44:\"Multiethnic startup business team on meeting\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:51:{i:0;s:7:\"startup\";i:1;s:7:\"meeting\";i:2;s:6:\"people\";i:3;s:6:\"person\";i:4;s:8:\"business\";i:5;s:6:\"modern\";i:6;s:5:\"group\";i:7;s:8:\"teamwork\";i:8;s:4:\"team\";i:9;s:6:\"casual\";i:10;s:5:\"small\";i:11;s:7:\"fashion\";i:12;s:7:\"concept\";i:13;s:6:\"tablet\";i:14;s:2:\"up\";i:15;s:8:\"training\";i:16;s:4:\"desk\";i:17;s:4:\"work\";i:18;s:6:\"laptop\";i:19;s:7:\"friends\";i:20;s:9:\"corporate\";i:21;s:6:\"coffee\";i:22;s:7:\"success\";i:23;s:10:\"technology\";i:24;s:7:\"smiling\";i:25;s:8:\"computer\";i:26;s:5:\"start\";i:27;s:8:\"creative\";i:28;s:10:\"colleagues\";i:29;s:5:\"women\";i:30;s:8:\"strategy\";i:31;s:5:\"young\";i:32;s:11:\"multiracial\";i:33;s:3:\"men\";i:34;s:13:\"businesswoman\";i:35;s:8:\"students\";i:36;s:11:\"multiethnic\";i:37;s:7:\"company\";i:38;s:13:\"brainstorming\";i:39;s:9:\"workplace\";i:40;s:10:\"successful\";i:41;s:3:\"job\";i:42;s:6:\"office\";i:43;s:5:\"happy\";i:44;s:12:\"entrepreneur\";i:45;s:11:\"businessman\";i:46;s:7:\"african\";i:47;s:8:\"american\";i:48;s:5:\"mixed\";i:49;s:8:\"informal\";i:50;s:5:\"space\";}}}'),(397,88,'_elementor_source_image_hash','138ad2d4f645f75cc3c21907b4cd456027be2c4a'),(398,87,'_elementor_data','[{\"id\":\"13563fa9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/multiethnic-startup-business-team-on-meeting-PNMFSET_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.27000000000000002,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"2256179a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23298575\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR TEAM\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"507e4bd6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"426a0759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"3327b88b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-idea1\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5b9460da\",\"elType\":\"widget\",\"settings\":{\"title\":\"IDEAS & CONCEPT\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70fc55d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48e2f85d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"animation_delay\":200,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"93f86a0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user-1\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4f0a1ce0\",\"elType\":\"widget\",\"settings\":{\"title\":\"USER SATISFICATION\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3737f276\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1b59adaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"animation_delay\":400,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"764e75ad\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-bamboo-Leaf\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5262695\",\"elType\":\"widget\",\"settings\":{\"title\":\"FINAL PRODUCT\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"741a0f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ce4ee25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c5319df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5777d6bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20fe532f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15ad1f5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60a97822\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"75cd4c0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc74097\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"700558a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a6ddb9\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"24bf76e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"202593c7\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49d9bf81\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"4248488e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"34c82fb4\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"23fea1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7428576f\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"169be5af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d427a4\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29dbcffa\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_attachment\":\"fixed\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfedae4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd60b14\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24b41064\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"37b1c972\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e82ae33\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Packaging\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":67,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"},{\"ekit_img_accordion_title\":\"Branding\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":66,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"2e3e735\"},{\"ekit_img_accordion_title\":\"Photography\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"75a16bc\"},{\"ekit_img_accordion_title\":\"Mockup\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"d9b0610\"},{\"ekit_img_accordion_title\":\"3D Illustration\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"2f92db0\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"},\"items_style_mobile\":\"vertical\"},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41b28346\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"3f45780\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"cffa02\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74f2ed01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1fc7d762\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3a4b0b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"22ca346d\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3b478625\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"5a5940d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"49bb475\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"17b9485e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"35a4fbdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3852a513\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77592042\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"534a01ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7913c0e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57d295e1\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"31b03702\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bb9c7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(399,89,'_elementor_edit_mode','builder'),(400,89,'_elementor_template_type','page'),(401,89,'_elementor_version','3.11.5'),(402,89,'_elementor_pro_version','3.11.6'),(403,89,'_elementor_data','[]'),(404,87,'_elementor_page_assets','a:1:{s:6:\"styles\";a:15:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";}}'),(405,87,'template_type','single-page'),(406,87,'include_in_zip','1'),(407,87,'elementor_pro_required',NULL),(408,87,'wp_page_template','elementor_canvas'),(409,87,'_elementor_import_session_id','6413f93187d95'),(410,90,'_elementor_edit_mode','builder'),(411,90,'_elementor_template_type','page'),(412,90,'_elementor_version','3.11.5'),(413,90,'_elementor_pro_version','3.11.6'),(414,91,'_wp_attached_file','2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2.jpg'),(415,91,'_elementor_import_session_id','6413f93187d95'),(416,91,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1177;s:4:\"file\";s:72:\"2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2.jpg\";s:8:\"filesize\";i:269470;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26272;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2-1024x502.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52929;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24229;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2-768x377.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:377;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42044;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:73:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2-1536x753.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:753;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80801;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:74:\"portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2-2048x1004.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1004;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116959;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:112:\"Portrait of fashion girl in a black sweater with a hood and sunglasses round shape in neon light in the studio .\";s:17:\"created_timestamp\";s:10:\"1548432102\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:110:\"Portrait of fashion girl in a black sweater with a hood and sunglasses round shape in neon light in the studio\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:7:\"fashion\";i:1;s:4:\"girl\";i:2;s:4:\"neon\";i:3;s:5:\"woman\";i:4;s:5:\"young\";i:5;s:5:\"model\";i:6;s:8:\"portrait\";i:7;s:7:\"elegant\";i:8;s:9:\"beautiful\";i:9;s:10:\"sunglasses\";i:10;s:5:\"color\";i:11;s:7:\"glasses\";i:12;s:6:\"studio\";i:13;s:7:\"hipster\";i:14;s:6:\"beauty\";i:15;s:4:\"blue\";i:16;s:3:\"red\";i:17;s:4:\"sexy\";i:18;s:5:\"style\";i:19;s:4:\"face\";i:20;s:6:\"female\";i:21;s:9:\"caucasian\";i:22;s:5:\"light\";i:23;s:6:\"violet\";i:24;s:5:\"black\";i:25;s:7:\"stylish\";i:26;s:6:\"glares\";i:27;s:6:\"pretty\";i:28;s:4:\"lady\";i:29;s:7:\"eyewear\";i:30;s:8:\"colorful\";i:31;s:6:\"makeup\";i:32;s:5:\"round\";i:33;s:5:\"night\";i:34;s:7:\"closeup\";i:35;s:6:\"bright\";i:36;s:3:\"art\";i:37;s:6:\"people\";i:38;s:8:\"lighting\";i:39;s:9:\"cinematic\";i:40;s:6:\"trendy\";i:41;s:6:\"lights\";i:42;s:5:\"cyber\";i:43;s:4:\"shot\";i:44;s:4:\"lamp\";i:45;s:6:\"hoodie\";i:46;s:6:\"design\";i:47;s:6:\"person\";i:48;s:8:\"close-up\";i:49;s:10:\"subculture\";}}}'),(417,91,'_elementor_source_image_hash','aeaa52bf9ecce01b147047ea5258e314117b00de'),(418,92,'_wp_attached_file','2023/03/bg_Mesa-de-trabajo-1-copia_3.jpg'),(419,92,'_elementor_import_session_id','6413f93187d95'),(420,92,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1514;s:6:\"height\";i:1500;s:4:\"file\";s:40:\"2023/03/bg_Mesa-de-trabajo-1-copia_3.jpg\";s:8:\"filesize\";i:100944;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"bg_Mesa-de-trabajo-1-copia_3-300x297.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21361;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"bg_Mesa-de-trabajo-1-copia_3-1024x1015.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1015;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67451;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"bg_Mesa-de-trabajo-1-copia_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14330;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"bg_Mesa-de-trabajo-1-copia_3-768x761.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:761;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48631;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:26:\"Topographic map background\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(421,92,'_elementor_source_image_hash','75a42fd532e91d6b9be0421790d18f3b7a08cce2'),(422,90,'_elementor_data','[{\"id\":\"2fc9c2a2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20103919\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49cd5d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TEAM MEMBER\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514b71ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"60862219\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e3836d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47caa80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5da67c92\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"432bb5b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":92,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/bg_Mesa-de-trabajo-1-copia_3.jpg\"},\"background_position\":\"center right\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":-25,\"sizes\":[]},\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"16ba51a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"LEONY HEART\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"187ebf8a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5bd62053\",\"elType\":\"widget\",\"settings\":{\"title\":\"Graphic Designer\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744c84ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Experience<\\/strong> : 7 Years<\\/p><p><strong>Email<\\/strong> : leonyheart@mail.com<\\/p><p><strong>Phone<\\/strong> :+1 234 567 890<\\/p><p><strong>Fax<\\/strong> : 1 234 567 890<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e01e2f9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=text\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b286259\",\"elType\":\"widget\",\"settings\":{\"title\":\"PERSONAL BIOGRAPHY\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20cc85b5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. Ut laoreet semper ligula, eget pretium purus congue a. Vivamus vehicula tincidunt magna, ac posuere nulla molestie placerat. Vivamus neque orci, scelerisque quis metus vel, bibendum volutpat leo. Donec eu mollis est.<\\/p><p>Sed sit amet dolor et enim elementum pellentesque. Praesent pulvinar odio ligula, nec ultricies nunc vehicula a. Duis sodales purus velit, nec tincidunt tortor maximus sed. Suspendisse imperdiet gravida ex sit amet ullamcorper.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b299542\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a0c2d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"19b74dd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKILL SET\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"759c00ff\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"UI\\/UX\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":85},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1bbfb834\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"BRANDING\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"379b3f61\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"ILLUSTRATION\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":95},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"}],\"isInner\":true},{\"id\":\"2d0ab0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"144e3fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACTIVITIES\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66d34de1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Creative Project 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"0fc8b67\"},{\"text\":\"Digital project planning and resourcing\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"ff9e4ef\"},{\"text\":\"Marketing Campaign\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"e567e1b\"},{\"text\":\"Product Consultant 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"b184e13\"},{\"text\":\"Head of Design and Marketing Department\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"819c19a\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"41eefdea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PERSONAL EXPERIENCE\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782f781a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. Ut laoreet semper ligula, eget pretium purus congue a. Vivamus vehicula tincidunt magna, ac posuere nulla molestie placerat. Vivamus neque orci, scelerisque quis metus vel, bibendum volutpat leo. Donec eu mollis est.<\\/p><p>Sed sit amet dolor et enim elementum pellentesque. Praesent pulvinar odio ligula, nec ultricies nunc vehicula a. Duis sodales purus velit, nec tincidunt tortor maximus sed. Suspendisse imperdiet gravida ex sit amet ullamcorper.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18384eaa\",\"elType\":\"widget\",\"settings\":{\"title\":\"LEAVE A REPLY\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f44f1d6\",\"elType\":\"widget\",\"settings\":{\"ekit_wpform_form_id\":\"497\",\"ekit_wpForms_field_border_border\":\"solid\",\"ekit_wpForms_field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_wpForms_field_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_wpForms_field_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"ekit_wpForms_button_border_normal_border\":\"solid\",\"ekit_wpForms_button_border_normal_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_wpForms_button_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"ekit_wpForms_text_color_label\":\"globals\\/colors?id=text\",\"ekit_wpForms_field_bg_color\":\"\",\"ekit_wpForms_field_text_color\":\"globals\\/colors?id=text\",\"ekit_wpForms_field_description_text_color\":\"globals\\/colors?id=a41d1b1\",\"ekit_wpForms_field_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_wpForms_field_typography_typography\":\"globals\\/typography?id=text\",\"ekit_wpForms_text_color_placeholder\":\"globals\\/colors?id=a41d1b1\",\"ekit_wpForms_button_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_wpForms_button_bg_color_normal\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_text_color_normal\":\"globals\\/colors?id=primary\",\"ekit_wpForms_button_bg_color_hover\":\"globals\\/colors?id=primary\",\"ekit_wpForms_button_text_color_hover\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_border_color_hover\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_border_normal_color\":\"globals\\/colors?id=accent\"},\"ekit_wpForms_text_color_label\":\"#000000\",\"ekit_wpForms_field_bg_color\":\"#F6F6F6\",\"ekit_wpForms_field_text_color\":\"#000000\",\"ekit_wpForms_field_description_text_color\":\"#3F3F3F\",\"ekit_wpForms_field_description_typography_typography\":\"custom\",\"ekit_wpForms_field_description_typography_font_family\":\"Poppins\",\"ekit_wpForms_field_description_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_weight\":\"400\",\"ekit_wpForms_field_typography_typography\":\"custom\",\"ekit_wpForms_field_typography_font_family\":\"Poppins\",\"ekit_wpForms_field_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_field_typography_font_weight\":\"400\",\"ekit_wpForms_text_color_placeholder\":\"#3F3F3F\",\"ekit_wpForms_button_align\":\"center\",\"ekit_wpForms_button_typography_typography\":\"custom\",\"ekit_wpForms_button_typography_font_family\":\"Poppins\",\"ekit_wpForms_button_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_button_typography_font_weight\":\"600\",\"ekit_wpForms_button_typography_text_transform\":\"uppercase\",\"ekit_wpForms_button_bg_color_normal\":\"#251AFF\",\"ekit_wpForms_button_text_color_normal\":\"#FFFFFF\",\"ekit_wpForms_button_border_normal_color\":\"#251AFF\",\"ekit_wpForms_button_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_wpForms_button_bg_color_hover\":\"#FFFFFF\",\"ekit_wpForms_button_text_color_hover\":\"#251AFF\",\"ekit_wpForms_button_border_color_hover\":\"#251AFF\"},\"elements\":[],\"widgetType\":\"elementskit-wp-forms\"}],\"isInner\":false}],\"isInner\":false}]'),(423,93,'_elementor_edit_mode','builder'),(424,93,'_elementor_template_type','page'),(425,93,'_elementor_version','3.11.5'),(426,93,'_elementor_pro_version','3.11.6'),(427,93,'_elementor_data','[]'),(428,90,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(429,90,'template_type','single-page'),(430,90,'include_in_zip','1'),(431,90,'elementor_pro_required',NULL),(432,90,'wp_page_template','elementor_canvas'),(433,90,'_elementor_import_session_id','6413f93187d95'),(434,94,'_elementor_edit_mode','builder'),(435,94,'_elementor_template_type','page'),(436,94,'_elementor_version','3.11.5'),(437,94,'_elementor_pro_version','3.11.6'),(438,95,'_wp_attached_file','2023/03/shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2.jpg'),(439,95,'_elementor_import_session_id','6413f93187d95'),(440,95,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1343;s:4:\"file\";s:72:\"2023/03/shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2.jpg\";s:8:\"filesize\";i:220114;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32175;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2-1024x573.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28352;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2-768x430.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60197;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:73:\"shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2-1536x860.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131953;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:74:\"shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2-2048x1146.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1146;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197503;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:98:\"Shows gesture with forefinger. Futuristic neon lighting. Young african american man in the studio.\";s:17:\"created_timestamp\";s:10:\"1562239947\";s:9:\"copyright\";s:14:\"Myron Standret\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:97:\"Shows gesture with forefinger. Futuristic neon lighting. Young african american man in the studio\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:4:\"neon\";i:1;s:5:\"light\";i:2;s:13:\"concentration\";i:3;s:7:\"african\";i:4;s:8:\"american\";i:5;s:9:\"ethnicity\";i:6;s:7:\"gesture\";i:7;s:6:\"finger\";i:8;s:3:\"man\";i:9;s:3:\"guy\";i:10;s:4:\"male\";i:11;s:5:\"young\";i:12;s:5:\"adult\";i:13;s:5:\"black\";i:14;s:6:\"luxury\";i:15;s:4:\"wear\";i:16;s:7:\"clothes\";i:17;s:5:\"shirt\";i:18;s:6:\"studio\";i:19;s:9:\"steampunk\";i:20;s:3:\"red\";i:21;s:4:\"blue\";i:22;s:8:\"portrait\";i:23;s:8:\"isolated\";i:24;s:3:\"one\";i:25;s:6:\"person\";i:26;s:4:\"body\";i:27;s:4:\"dark\";i:28;s:8:\"colorful\";i:29;s:4:\"face\";i:30;s:7:\"fashion\";i:31;s:10:\"futuristic\";i:32;s:8:\"handsome\";i:33;s:5:\"model\";i:34;s:10:\"attractive\";i:35;s:5:\"night\";i:36;s:5:\"party\";i:37;s:3:\"art\";i:38;s:6:\"bricks\";i:39;s:12:\"contemporary\";i:40;s:6:\"modern\";i:41;s:8:\"standing\";i:42;s:5:\"short\";i:43;s:4:\"hair\";i:44;s:7:\"clubber\";i:45;s:6:\"posing\";i:46;s:9:\"gentleman\";i:47;s:10:\"artificial\";i:48;s:4:\"nice\";i:49;s:9:\"beautiful\";}}}'),(441,95,'_elementor_source_image_hash','0e3a18a9b0a3fd08d10264cc7d79e1c1340770ce'),(442,94,'_elementor_data','[{\"id\":\"5014d701\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":95,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eaebaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d2b6c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQS\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65ed017a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd2905c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5690f9ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE HERE TO HELP YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b8fa879\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"78137199\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick support\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48512712\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"60486310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"2a4e7dfd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-smart\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6d78cd73\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANALYSIS\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"734148cb\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403da686\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"33407c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"24d981f8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Design-3\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"69f4dae\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEVELOPMENT\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6227f06b\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"266b5a35\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2cbb20bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"42c46113\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-flower\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4656c59a\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2899aed\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e33bc6d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bfc7358\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":65,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg\"},\"background_position\":\"initial\",\"background_position_tablet\":\"center left\",\"background_ypos\":{\"unit\":\"px\",\"size\":-150,\"sizes\":[]},\"background_size\":\"cover\",\"background_size_tablet\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"feecab3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"554998e3\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\",\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#251AFF\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"__globals__\":{\"ekit_video_popup_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=accent\"},\"ekit_video_popup_btn_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"310a089f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71522c7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"32\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6bbb9298\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26661c9\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"798743ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"do you know?\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ae147c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3dc729f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2a4ed97f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"120\",\"left\":\"40\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(443,96,'_elementor_edit_mode','builder'),(444,96,'_elementor_template_type','page'),(445,96,'_elementor_version','3.11.5'),(446,96,'_elementor_pro_version','3.11.6'),(447,96,'_elementor_data','[]'),(448,94,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(449,94,'template_type','single-page'),(450,94,'include_in_zip','1'),(451,94,'elementor_pro_required',NULL),(452,94,'wp_page_template','elementor_canvas'),(453,94,'_elementor_import_session_id','6413f93187d95'),(454,97,'_elementor_edit_mode','builder'),(455,97,'_elementor_template_type','page'),(456,97,'_elementor_version','3.11.5'),(457,97,'_elementor_pro_version','3.11.6'),(458,98,'_wp_attached_file','2023/03/portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2.jpg'),(459,98,'_elementor_import_session_id','6413f93187d95'),(460,98,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1277;s:4:\"file\";s:72:\"2023/03/portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2.jpg\";s:8:\"filesize\";i:242443;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24713;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2-1024x545.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64446;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23005;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2-768x409.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46586;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:73:\"portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2-1536x817.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:817;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114072;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:74:\"portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2-2048x1090.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1090;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181306;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:123:\"Portrait of joyful african american man in colorful hoodie talking on cellphone with earpod isolated over violet background\";s:17:\"created_timestamp\";s:10:\"1557580675\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"61\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:64:\"Portrait of joyful african american man in colorful hoodie talki\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:47:{i:0;s:8:\"portrait\";i:1;s:3:\"man\";i:2;s:4:\"arms\";i:3;s:8:\"enjoying\";i:4;s:8:\"pleasure\";i:5;s:4:\"afro\";i:6;s:7:\"african\";i:7;s:8:\"american\";i:8;s:7:\"gesture\";i:9;s:7:\"pleased\";i:10;s:7:\"smiling\";i:11;s:3:\"guy\";i:12;s:4:\"male\";i:13;s:5:\"happy\";i:14;s:6:\"casual\";i:15;s:5:\"black\";i:16;s:8:\"handsome\";i:17;s:6:\"violet\";i:18;s:10:\"background\";i:19;s:3:\"one\";i:20;s:6:\"indoor\";i:21;s:8:\"isolated\";i:22;s:6:\"studio\";i:23;s:5:\"basic\";i:24;s:4:\"dark\";i:25;s:8:\"laughing\";i:26;s:10:\"optimistic\";i:27;s:7:\"bearded\";i:28;s:9:\"moustache\";i:29;s:6:\"hoodie\";i:30;s:10:\"sweatshirt\";i:31;s:4:\"hear\";i:32;s:5:\"short\";i:33;s:5:\"alone\";i:34;s:7:\"bristle\";i:35;s:4:\"face\";i:36;s:5:\"young\";i:37;s:3:\"20s\";i:38;s:5:\"hands\";i:39;s:9:\"cellphone\";i:40;s:10:\"smartphone\";i:41;s:6:\"mobile\";i:42;s:8:\"internet\";i:43;s:7:\"talking\";i:44;s:6:\"earpod\";i:45;s:7:\"earplug\";i:46;s:8:\"cheerful\";}}}'),(461,98,'_elementor_source_image_hash','914c172ff8228f65ebdc0449c57631bf62c20105'),(462,99,'_wp_attached_file','2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A_3.jpg'),(463,99,'_elementor_import_session_id','6413f93187d95'),(464,99,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1055;s:6:\"height\";i:1515;s:4:\"file\";s:72:\"2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A_3.jpg\";s:8:\"filesize\";i:212732;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A_3-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35754;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A_3-713x1024.jpg\";s:5:\"width\";i:713;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29547;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:73:\"trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A_3-768x1103.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1103;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158284;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:129:\"Trendy girl with long hair and stylish makeup in a black shining dress poses on the blue background in neon light in the studio .\";s:17:\"created_timestamp\";s:10:\"1548430353\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:127:\"Trendy girl with long hair and stylish makeup in a black shining dress poses on the blue background in neon light in the studio\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:56:{i:0;s:5:\"woman\";i:1;s:7:\"fashion\";i:2;s:5:\"model\";i:3;s:8:\"portrait\";i:4;s:4:\"blue\";i:5;s:5:\"light\";i:6;s:6:\"beauty\";i:7;s:4:\"girl\";i:8;s:4:\"face\";i:9;s:3:\"art\";i:10;s:9:\"beautiful\";i:11;s:7:\"glamour\";i:12;s:5:\"color\";i:13;s:6:\"makeup\";i:14;s:2:\"up\";i:15;s:7:\"make-up\";i:16;s:4:\"hair\";i:17;s:5:\"young\";i:18;s:4:\"high\";i:19;s:4:\"make\";i:20;s:4:\"lips\";i:21;s:6:\"trendy\";i:22;s:4:\"sexy\";i:23;s:5:\"disco\";i:24;s:6:\"bright\";i:25;s:5:\"style\";i:26;s:9:\"hairstyle\";i:27;s:6:\"silver\";i:28;s:8:\"earrings\";i:29;s:6:\"posing\";i:30;s:6:\"female\";i:31;s:6:\"lights\";i:32;s:4:\"eyes\";i:33;s:9:\"spotlight\";i:34;s:6:\"cinema\";i:35;s:4:\"mask\";i:36;s:4:\"part\";i:37;s:7:\"emotion\";i:38;s:4:\"dark\";i:39;s:5:\"black\";i:40;s:6:\"person\";i:41;s:5:\"white\";i:42;s:5:\"asian\";i:43;s:7:\"closeup\";i:44;s:3:\"one\";i:45;s:7:\"stylish\";i:46;s:4:\"spot\";i:47;s:7:\"elegant\";i:48;s:6:\"pretty\";i:49;s:5:\"vogue\";i:50;s:7:\"sensual\";i:51;s:4:\"skin\";i:52;s:6:\"luxury\";i:53;s:7:\"perfect\";i:54;s:6:\"studio\";i:55;s:6:\"shadow\";}}}'),(465,99,'_elementor_source_image_hash','174f4616f4bfc45a5e0ccb617bad55e81bbb330a'),(466,97,'_elementor_data','[{\"id\":\"2221dd59\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":98,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b21ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3817c8d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT US\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56615444\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10669d93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2547535f\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACT\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65756a2f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a49dea\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f0c2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fcec224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E7E7E7\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48edc522\",\"elType\":\"widget\",\"settings\":{\"title\":\"MURRAY\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdd1743\",\"elType\":\"widget\",\"settings\":{\"text\":\"2930 Philadelphia Avenue\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7673355\",\"elType\":\"widget\",\"settings\":{\"text\":\"801-265-6514\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"420e82da\",\"elType\":\"widget\",\"settings\":{\"text\":\"anymail@jmail.com\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"453fcf6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E7E7E7\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5239f11b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALABASTA\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724a29e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"2930 Philadelphia Avenue\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2f5333e6\",\"elType\":\"widget\",\"settings\":{\"text\":\"801-265-6514\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"649c07b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"anymail@jmail.com\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"667548dd\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c282886\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":99,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A_3.jpg\"},\"background_position\":\"initial\",\"background_position_tablet\":\"center center\",\"background_ypos\":{\"unit\":\"px\",\"size\":-58,\"sizes\":[]},\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"33676c1c\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"25b57896\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"7cd62c01\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT US\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bb69783\",\"elType\":\"widget\",\"settings\":{\"ekit_wpform_form_id\":\"497\",\"ekit_wpForms_field_border_border\":\"solid\",\"ekit_wpForms_field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_wpForms_field_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_wpForms_field_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"ekit_wpForms_button_border_normal_border\":\"solid\",\"ekit_wpForms_button_border_normal_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_wpForms_button_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"ekit_wpForms_text_color_label\":\"globals\\/colors?id=text\",\"ekit_wpForms_field_bg_color\":\"globals\\/colors?id=primary\",\"ekit_wpForms_field_text_color\":\"globals\\/colors?id=text\",\"ekit_wpForms_field_description_text_color\":\"globals\\/colors?id=a41d1b1\",\"ekit_wpForms_field_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_wpForms_field_typography_typography\":\"globals\\/typography?id=text\",\"ekit_wpForms_text_color_placeholder\":\"\",\"ekit_wpForms_button_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_wpForms_button_bg_color_normal\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_text_color_normal\":\"globals\\/colors?id=primary\",\"ekit_wpForms_button_bg_color_hover\":\"globals\\/colors?id=primary\",\"ekit_wpForms_button_text_color_hover\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_border_color_hover\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_border_normal_color\":\"globals\\/colors?id=accent\"},\"ekit_wpForms_text_color_label\":\"#000000\",\"ekit_wpForms_field_bg_color\":\"#FFFFFF\",\"ekit_wpForms_field_text_color\":\"#000000\",\"ekit_wpForms_field_description_text_color\":\"#3F3F3F\",\"ekit_wpForms_field_description_typography_typography\":\"custom\",\"ekit_wpForms_field_description_typography_font_family\":\"Poppins\",\"ekit_wpForms_field_description_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_weight\":\"400\",\"ekit_wpForms_field_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"ekit_wpForms_field_typography_typography\":\"custom\",\"ekit_wpForms_field_typography_font_family\":\"Poppins\",\"ekit_wpForms_field_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_field_typography_font_weight\":\"400\",\"ekit_wpForms_field_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"ekit_wpForms_text_color_placeholder\":\"#868686\",\"ekit_wpForms_button_typography_typography\":\"custom\",\"ekit_wpForms_button_typography_font_family\":\"Poppins\",\"ekit_wpForms_button_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_button_typography_font_weight\":\"600\",\"ekit_wpForms_button_typography_text_transform\":\"uppercase\",\"ekit_wpForms_button_bg_color_normal\":\"#251AFF\",\"ekit_wpForms_button_text_color_normal\":\"#FFFFFF\",\"ekit_wpForms_button_border_normal_color\":\"#251AFF\",\"ekit_wpForms_button_bg_color_hover\":\"#FFFFFF\",\"ekit_wpForms_button_text_color_hover\":\"#251AFF\",\"ekit_wpForms_button_border_color_hover\":\"#251AFF\"},\"elements\":[],\"widgetType\":\"elementskit-wp-forms\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a895100\",\"elType\":\"widget\",\"settings\":{\"title\":\"HAVE ANY QUESTION? JUST SAY HI!\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeIn\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59a933b\",\"elType\":\"widget\",\"settings\":{\"text\":\"GET IN TOUCH\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39b8a661\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"2398a281\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f25b787\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"css_filters_css_filter\":\"custom\",\"css_filters_contrast\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":211,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(467,100,'_elementor_edit_mode','builder'),(468,100,'_elementor_template_type','page'),(469,100,'_elementor_version','3.11.5'),(470,100,'_elementor_pro_version','3.11.6'),(471,100,'_elementor_data','[]'),(472,97,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(473,97,'template_type','single-page'),(474,97,'include_in_zip','1'),(475,97,'elementor_pro_required',NULL),(476,97,'wp_page_template','elementor_canvas'),(477,97,'_elementor_import_session_id','6413f93187d95'),(478,101,'_elementor_edit_mode','builder'),(479,101,'_elementor_template_type','page'),(480,101,'_elementor_version','3.11.5'),(481,101,'_elementor_pro_version','3.11.6'),(482,102,'_wp_attached_file','2023/03/Asset-2_logo.png'),(483,102,'_elementor_import_session_id','6413f93187d95'),(484,102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2414;s:6:\"height\";i:522;s:4:\"file\";s:24:\"2023/03/Asset-2_logo.png\";s:8:\"filesize\";i:22216;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Asset-2_logo-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3176;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Asset-2_logo-1024x221.png\";s:5:\"width\";i:1024;s:6:\"height\";i:221;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11818;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-2_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1430;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Asset-2_logo-768x166.png\";s:5:\"width\";i:768;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8634;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"Asset-2_logo-1536x332.png\";s:5:\"width\";i:1536;s:6:\"height\";i:332;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18393;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:25:\"Asset-2_logo-2048x443.png\";s:5:\"width\";i:2048;s:6:\"height\";i:443;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25186;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(485,102,'_elementor_source_image_hash','cae0d6cdacdc09c9ae61445e64293afa94de6b41'),(486,103,'_wp_attached_file','2023/03/dom-fou-QZfmPAOnt2Y-unsplash_3.jpg'),(487,103,'_elementor_import_session_id','6413f93187d95'),(488,103,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1335;s:4:\"file\";s:42:\"2023/03/dom-fou-QZfmPAOnt2Y-unsplash_3.jpg\";s:8:\"filesize\";i:195828;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"dom-fou-QZfmPAOnt2Y-unsplash_3-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13968;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"dom-fou-QZfmPAOnt2Y-unsplash_3-1024x570.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62503;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"dom-fou-QZfmPAOnt2Y-unsplash_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10586;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"dom-fou-QZfmPAOnt2Y-unsplash_3-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40294;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"dom-fou-QZfmPAOnt2Y-unsplash_3-1536x854.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123932;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:44:\"dom-fou-QZfmPAOnt2Y-unsplash_3-2048x1139.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201734;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(489,103,'_elementor_source_image_hash','342eaaf3ab9c66c7e9cae8888e5c68adbc949d55'),(490,101,'_elementor_data','[{\"id\":\"694dffe6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"350\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":103,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_3.jpg\"},\"background_size\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"adea796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"715281f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"500\",\"bottom\":\"50\",\"left\":\"500\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"320\",\"bottom\":\"0\",\"left\":\"320\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"361c1b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMING SOON\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\",\"title_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(491,104,'_elementor_edit_mode','builder'),(492,104,'_elementor_template_type','page'),(493,104,'_elementor_version','3.11.5'),(494,104,'_elementor_pro_version','3.11.6'),(495,104,'_elementor_data','[]'),(496,101,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(497,101,'template_type','single-page'),(498,101,'include_in_zip','1'),(499,101,'elementor_pro_required',NULL),(500,101,'wp_page_template','elementor_canvas'),(501,101,'_elementor_import_session_id','6413f93187d95'),(502,105,'_elementor_edit_mode','builder'),(503,105,'_elementor_template_type','section'),(504,105,'_elementor_version','3.11.5'),(505,105,'_elementor_pro_version','3.11.6'),(506,106,'_wp_attached_file','2023/03/male-hacker-stealing-data-HCLSABP_2.jpg'),(507,106,'_elementor_import_session_id','6413f93187d95'),(508,106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1602;s:4:\"file\";s:47:\"2023/03/male-hacker-stealing-data-HCLSABP_2.jpg\";s:8:\"filesize\";i:230833;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"male-hacker-stealing-data-HCLSABP_2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29417;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"male-hacker-stealing-data-HCLSABP_2-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"male-hacker-stealing-data-HCLSABP_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23587;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"male-hacker-stealing-data-HCLSABP_2-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69830;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"male-hacker-stealing-data-HCLSABP_2-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180442;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:49:\"male-hacker-stealing-data-HCLSABP_2-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:268598;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D800E\";s:7:\"caption\";s:119:\"Close-up shot of unrecognizable hacker stealing confidential data while sitting in front of modern computer at dim room\";s:17:\"created_timestamp\";s:10:\"1507265671\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:25:\"Male Hacker Stealing Data\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:34:{i:0;s:10:\"programmer\";i:1;s:11:\"programming\";i:2;s:8:\"computer\";i:3;s:3:\"man\";i:4;s:5:\"hands\";i:5;s:8:\"close-up\";i:6;s:14:\"unrecognizable\";i:7;s:10:\"technology\";i:8;s:6:\"coding\";i:9;s:6:\"typing\";i:10;s:7:\"working\";i:11;s:7:\"sitting\";i:12;s:4:\"desk\";i:13;s:6:\"office\";i:14;s:3:\"dim\";i:15;s:4:\"code\";i:16;s:9:\"workplace\";i:17;s:12:\"professional\";i:18;s:10:\"occupation\";i:19;s:7:\"monitor\";i:20;s:6:\"hacker\";i:21;s:6:\"screen\";i:22;s:4:\"data\";i:23;s:5:\"coder\";i:24;s:8:\"software\";i:25;s:7:\"website\";i:26;s:8:\"employee\";i:27;s:9:\"developer\";i:28;s:7:\"indoors\";i:29;s:7:\"program\";i:30;s:3:\"web\";i:31;s:7:\"hacking\";i:32;s:8:\"overwork\";i:33;s:4:\"late\";}}}'),(509,106,'_elementor_source_image_hash','6a9d34a7562e7a9fb3a78dd0e840a6a564f04d8a'),(510,105,'_elementor_data','[{\"id\":\"2511ea55\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"350\",\"right\":\"0\",\"bottom\":\"310\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":106,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/male-hacker-stealing-data-HCLSABP_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d4c7c3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35ae8e0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"4 0 4 \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3a95010\",\"title_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16af66eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"SORRY THE PAGE NOT FOUND\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36a0de8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The page you are looking for maybe was moved, removed, renamed or never existed.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"350\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"265b3366\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon_text\",\"placeholder\":\"   Search...\",\"input_placeholder_color\":\"#BCBCBC\",\"input_background_color\":\"#F2F2F2\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"350\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"200\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_background_color\":\"globals\\/colors?id=primary\",\"input_placeholder_color\":\"\",\"button_background_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=accent\",\"hover_close_icon_text\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":false}],\"isInner\":false}]'),(511,107,'_elementor_edit_mode','builder'),(512,107,'_elementor_template_type','section'),(513,107,'_elementor_version','3.11.5'),(514,107,'_elementor_pro_version','3.11.6'),(515,107,'_elementor_data','[]'),(516,105,'_elementor_page_assets','a:1:{s:6:\"styles\";a:4:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";}}'),(517,105,'template_type','single-404'),(518,105,'include_in_zip','1'),(519,105,'elementor_pro_required',NULL),(520,105,'wp_page_template','elementor_canvas'),(521,105,'_elementor_import_session_id','6413f93187d95'),(522,108,'_elementor_edit_mode','builder'),(523,108,'_elementor_template_type','page'),(524,108,'_elementor_version','3.11.5'),(525,108,'_elementor_pro_version','3.11.6'),(526,109,'_wp_attached_file','2023/03/typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2.jpg'),(527,109,'_elementor_import_session_id','6413f93187d95'),(528,109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1266;s:4:\"file\";s:72:\"2023/03/typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2.jpg\";s:8:\"filesize\";i:201774;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26555;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2-1024x540.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85341;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2-768x405.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60955;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:73:\"typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2-1536x810.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145500;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:74:\"typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2-2048x1080.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214448;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:50:\"Typing on laptop computer keyboard with pink light\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:50:\"Typing on laptop computer keyboard with pink light\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:40:{i:0;s:4:\"back\";i:1;s:4:\"blue\";i:2;s:5:\"close\";i:3;s:5:\"color\";i:4;s:8:\"computer\";i:5;s:5:\"cyber\";i:6;s:4:\"dark\";i:7;s:6:\"design\";i:8;s:6:\"device\";i:9;s:9:\"equipment\";i:10;s:2:\"fi\";i:11;s:4:\"film\";i:12;s:6:\"gaming\";i:13;s:6:\"hacker\";i:14;s:6:\"helmet\";i:15;s:6:\"inside\";i:16;s:8:\"keyboard\";i:17;s:4:\"keys\";i:18;s:6:\"laptop\";i:19;s:3:\"led\";i:20;s:5:\"light\";i:21;s:7:\"lighted\";i:22;s:6:\"modern\";i:23;s:5:\"movie\";i:24;s:5:\"night\";i:25;s:8:\"notebook\";i:26;s:2:\"pc\";i:27;s:4:\"pink\";i:28;s:4:\"play\";i:29;s:6:\"purple\";i:30;s:3:\"red\";i:31;s:3:\"rgb\";i:32;s:3:\"sci\";i:33;s:5:\"scifi\";i:34;s:6:\"sports\";i:35;s:10:\"technology\";i:36;s:6:\"typing\";i:37;s:2:\"up\";i:38;s:5:\"video\";i:39;s:8:\"watching\";}}}'),(529,109,'_elementor_source_image_hash','f6745bbbd585e3ae2d1a9c159d2fe4cd5803e4d5'),(530,110,'_wp_attached_file','2023/03/walling-52H5Nfi5WiE-unsplash_2.jpg'),(531,110,'_elementor_import_session_id','6413f93187d95'),(532,110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:42:\"2023/03/walling-52H5Nfi5WiE-unsplash_2.jpg\";s:8:\"filesize\";i:249918;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"walling-52H5Nfi5WiE-unsplash_2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30890;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151032;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"walling-52H5Nfi5WiE-unsplash_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17862;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"walling-52H5Nfi5WiE-unsplash_2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97333;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(533,110,'_elementor_source_image_hash','03d646aa1abfc2828c97c3403af5e0b6d4591ca9'),(534,108,'_elementor_data','[{\"id\":\"79184c1c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":109,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ecefca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ffea858\",\"elType\":\"widget\",\"settings\":{\"title\":\"BLOG\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"501c625f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c657ca4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"6a66516d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e96fc9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59ec6ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52727e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"24a4a8df\",\"elType\":\"widget\",\"settings\":{\"title\":\"LINDA STRIS\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-7\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e067ee3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life is like a boat<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47102b53\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f156fbc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon_text\",\"placeholder\":\"   Search...\",\"input_placeholder_color\":\"#CBCBCB\",\"input_background_color\":\"#F8F8F8\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_background_color\":\"\",\"input_placeholder_color\":\"\",\"button_background_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=accent\",\"hover_close_icon_text\":\"globals\\/colors?id=accent\"},\"button_background_color\":\"#251AFF\",\"text_color\":\"#251AFF\",\"hover_close_icon_text\":\"#251AFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"},{\"id\":\"5d4451cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"CATEGORIES\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b670a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"GALLERY\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bef647b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f27ded5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb07cc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":110,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/walling-52H5Nfi5WiE-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c476e42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6e196160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"191eefa8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"46f17809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e629c3c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ecd8330\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"30a42984\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"757669a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEED A DESIGN?\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d553953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>let\'s get to work<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ab1157e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#251AFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#251AFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(535,111,'_elementor_edit_mode','builder'),(536,111,'_elementor_template_type','page'),(537,111,'_elementor_version','3.11.5'),(538,111,'_elementor_pro_version','3.11.6'),(539,111,'_elementor_data','[]'),(540,108,'_elementor_page_assets','a:0:{}'),(541,108,'template_type','single-page'),(542,108,'include_in_zip','1'),(543,108,'elementor_pro_required',NULL),(544,108,'wp_page_template','elementor_canvas'),(545,108,'_elementor_import_session_id','6413f93187d95'),(546,112,'_elementor_edit_mode','builder'),(547,112,'_elementor_template_type','section'),(548,112,'_elementor_version','3.11.5'),(549,112,'_elementor_pro_version','3.11.6'),(550,112,'_elementor_data','[{\"id\":\"4ff73cec\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":68,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"290\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a14bd1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"458df25e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"8625f96\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":6.5449999999999999,\"_inline_size_tablet\":10},\"elements\":[{\"id\":\"7875d074\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"543570cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.7430000000000003,\"content_position\":\"center\",\"_inline_size_tablet\":18},\"elements\":[],\"isInner\":true},{\"id\":\"31251dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":2.1989999999999998,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"6f079fe4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>||<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-2\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"17ec0050\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":81.513000000000005,\"content_position\":\"center\",\"_inline_size_tablet\":64},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7eae9be6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"25d18eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6d7796ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"463520c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"721520e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"530f810b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum. Vestibulum tincidunt porta nulla. Nulla egestas ligula at molestie pulvinar. Cras nec porta lorem, et eleifend risus. Aenean pretium sit amet metus eget volutpat. Sed in diam quis nunc sollicitudin euismod nec in felis.<\\/p><p>Nullam consequat, arcu vitae posuere tincidunt, diam tortor bibendum sapien, in convallis velit est nec odio. In congue faucibus dui eget commodo. Integer et ante nibh. Pellentesque in placerat magna, sed imperdiet quam. Pellentesque nulla massa, convallis sed lectus at, dignissim porttitor mauris. Integer in sapien porta arcu viverra mollis id sit amet tortor. Etiam mattis augue quis mauris pellentesque, quis sollicitudin mauris rhoncus. Duis tincidunt mauris quis euismod consequat. Praesent erat arcu, cursus quis ornare eu, euismod vel nisl. Morbi maximus at lectus vitae tincidunt. Nulla quis scelerisque neque. Donec luctus, ipsum porta luctus porta, neque est vulputate ante, a bibendum est augue vitae erat. Proin ut efficitur tellus. Nulla interdum ornare tempus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"693631cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Many of life\\u2019s failures are people who did not realize how close they were to success when they gave up.\\\" \\u2013 Thomas A. Edison\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3047230d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum. Vestibulum tincidunt porta nulla. Nulla egestas ligula at molestie pulvinar. Cras nec porta lorem, et eleifend risus. Aenean pretium sit amet metus eget volutpat. Sed in diam quis nunc sollicitudin euismod nec in felis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74e7af84\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"745b5921\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"122ce8a9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"150\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"308bc206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.663,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"background_background\":\"classic\",\"background_image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/wp-content\\/uploads\\/sites\\/4\\/2021\\/04\\/runda_Artboard-1_portrait-min.jpeg\",\"id\":87},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c8b9658\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"19c96cd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.337000000000003,\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"172035a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fcea653\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"},{\"_id\":\"d8ec4c7\",\"social_icon\":{\"value\":\"fab fa-reddit\",\"library\":\"fa-brands\"}}],\"shape\":\"circle\",\"columns\":\"4\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-18\",\"isLinked\":false},\"columns_mobile\":\"4\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=text\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7663ca8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14b459fe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"289d514f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"3335c44a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23b11af7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life is like a boat<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3db58f06\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21dba624\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon_text\",\"placeholder\":\"   Search...\",\"input_placeholder_color\":\"#CBCBCB\",\"input_background_color\":\"#F8F8F8\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_background_color\":\"\",\"input_placeholder_color\":\"\",\"button_background_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=accent\",\"hover_close_icon_text\":\"globals\\/colors?id=accent\"},\"button_background_color\":\"#251AFF\",\"text_color\":\"#251AFF\",\"hover_close_icon_text\":\"#251AFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"},{\"id\":\"7db3257b\",\"elType\":\"widget\",\"settings\":{\"title\":\"CATEGORIES\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20a27936\",\"elType\":\"widget\",\"settings\":{\"title\":\"GALLERY\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4715e024\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9cc3f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbee65c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":110,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/walling-52H5Nfi5WiE-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3c53bb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"389ca1e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6449b07c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1326f5c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ad06b12\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"70413f10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78face7c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"78e0151e\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEED A DESIGN?\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4026cf7f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>let\'s get to work<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"578ff4af\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#251AFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#251AFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(551,113,'_elementor_edit_mode','builder'),(552,113,'_elementor_template_type','section'),(553,113,'_elementor_version','3.11.5'),(554,113,'_elementor_pro_version','3.11.6'),(555,113,'_elementor_data','[]'),(556,112,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(557,112,'template_type','single-post'),(558,112,'include_in_zip','1'),(559,112,'elementor_pro_required',NULL),(560,112,'wp_page_template','elementor_canvas'),(561,112,'_elementor_import_session_id','6413f93187d95'),(562,114,'_elementor_edit_mode','builder'),(563,114,'_elementor_template_type','section'),(564,114,'_elementor_version','3.11.5'),(565,114,'_elementor_pro_version','3.11.6'),(566,114,'_elementor_data','[{\"id\":\"7efc6c53\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"1dda0fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":10,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad543f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4b30f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":90,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41b69566\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76ec02db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":90,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[],\"isInner\":true},{\"id\":\"5f00bdf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":10,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"31fcd0df\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(567,115,'_elementor_edit_mode','builder'),(568,115,'_elementor_template_type','section'),(569,115,'_elementor_version','3.11.5'),(570,115,'_elementor_pro_version','3.11.6'),(571,115,'_elementor_data','[]'),(572,114,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(573,114,'template_type','section-header'),(574,114,'include_in_zip','1'),(575,114,'elementor_pro_required',NULL),(576,114,'wp_page_template','elementor_canvas'),(577,114,'_elementor_import_session_id','6413f93187d95'),(578,116,'_elementor_edit_mode','builder'),(579,116,'_elementor_template_type','section'),(580,116,'_elementor_version','3.11.5'),(581,116,'_elementor_pro_version','3.11.6'),(582,116,'_elementor_data','[{\"id\":\"42d2b7b0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"549e349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"677b32a3\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"275\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a9c392a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1411a492\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2750 Goodwin Avenue, Washington, USA<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"46992ed8\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"727661b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>runda@anymail.com<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29eaace7\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d785ae4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>509-364-0482<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24d1eda7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"1fb4c279\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d62a5a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6fc865d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ab4ce09\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"18fa184b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c1cc90d\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9f1806\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6656e9ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"417dc4d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5280d524\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(583,117,'_elementor_edit_mode','builder'),(584,117,'_elementor_template_type','section'),(585,117,'_elementor_version','3.11.5'),(586,117,'_elementor_pro_version','3.11.6'),(587,117,'_elementor_data','[]'),(588,116,'_elementor_page_assets','a:0:{}'),(589,116,'template_type','section-footer'),(590,116,'include_in_zip','1'),(591,116,'elementor_pro_required',NULL),(592,116,'wp_page_template','elementor_canvas'),(593,116,'_elementor_import_session_id','6413f93187d95'),(594,118,'_elementor_edit_mode','builder'),(595,118,'_elementor_template_type','section'),(596,118,'_elementor_version','3.11.5'),(597,118,'_elementor_pro_version','3.11.6'),(598,118,'_elementor_data','[{\"id\":\"67a06416\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"4ab5ad9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"34eef1a1\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4b9475d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"651c0095\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5076efc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c312940\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30f6111f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"702c4243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14d5a170\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"68085d9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"213264b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce35e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1b06d9b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"66e5f60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6da3c272\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"11c44852\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"37a6947\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"17246113\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"433582bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"19974920\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7732fdb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6955a7dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"5c2916bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26298e4d\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"44d1d092\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aa59f75\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f8745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"30a84678\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"68c3433e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"51664539\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"444410ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"6c721b25\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"292ea9d7\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4fd6e702\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"23df32e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c4b9ba6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8821b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73c329d8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"595378c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"3e5aafbc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43c5f86b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"386d9427\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"26470717\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21761b71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"13afe1f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5aeba261\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4362823d\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca1fd2c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4bee4b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6091e400\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"7884a842\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a385ed0\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63b29bad\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5dfdb0e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55d9f06d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"17757aa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"646e0f85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"33f696d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2130e1bb\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6586b003\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7091278a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3fb96793\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a4aa755\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"de64d87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"5d14ce8e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"792b7fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"259ce850\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1951121c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"14625d9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f25f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4b82280c\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"382e016c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f931ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d545e78\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1fb87e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"420245dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4415f61c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"115c6dc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"561d403d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40e4c40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6b48a451\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3303f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f9b1cd\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a344a63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e85e9dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"5daba933\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"621891d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f9869c3\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43d568a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"488bb07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"d58d58d\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2debcd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51cd84ed\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48b63f75\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"769e164b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6d20d374\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"5d1c1ec0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7ce5e5ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49595774\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"312d225\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc3acbe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6d28a264\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c16d293\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"588a9087\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e1d6ae4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"707cf73\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28635a7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2662f607\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f606605\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"666a0646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e4b4cf9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4a689e2c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7f7803ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"21276a47\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77d45e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"67f4910a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3acfce0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d521168\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bd87378\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"786bf465\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24675757\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"73e34bc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c56ab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"3a1ad6ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"72142cca\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1afb4c21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6fb2d60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16a08e33\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"120d963e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e8f14fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c16c5fb\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"46451c17\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1cb3ab76\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6c4c87aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7750131a\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"487419f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"27495080\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"5cbc8cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eefad99\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3f4029f5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"33d7146\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dded81a\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"1bd4678a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d494489\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"55ce941b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2187c184\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2861b6d9\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"56de06c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"65e0494\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ffe2c4f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e910a15\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32f3a645\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"43ebacbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f56a380\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"348d23b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"518e1884\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3601c013\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4ae87b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"5ca03103\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24502882\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75709bbe\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a3c541\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15d84dd3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1524a97d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7951f25d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(599,118,'_elementor_page_assets','a:0:{}'),(600,118,'_elementor_import_session_id','6413f93187d95'),(601,119,'_elementor_edit_mode','builder'),(602,119,'_elementor_template_type','section'),(603,119,'_elementor_version','3.11.5'),(604,119,'_elementor_pro_version','3.11.6'),(605,119,'_elementor_data','[{\"id\":\"2f45631f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":60,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/abstract-multicolor-vibrant-background-4B9KSZJ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"4d8fa773\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bb32825\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6166e9e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c7a371c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21fa862e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"450\",\"bottom\":\"30\",\"left\":\"450\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75491a9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"645a0a08\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35f60f62\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cff502f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeIn\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"16b2b6da\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1cb26d81\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b4d97b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"411cad50\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"424a4176\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e729340\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9bc552\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"355aa27b\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a24dadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5beb15e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"},{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"},{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_size_mobile\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6a94cad1\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32709df4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7fda4b7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fbb37ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT CAN WE OFFER FOR YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4699cc29\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4341959\",\"elType\":\"widget\",\"settings\":{\"title\":\"our best service\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5efffee5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b64160\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7989a3f8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-smart\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1be57050\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEVELOPMENT\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d45a130\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6898dd7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"33e6e18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2f6d0792\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Design-3\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5edfd494\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANALYSIS\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24cb55f2\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f3bc9c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"760f5df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5b90a862\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-flower\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1cb789a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48733dc\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d72c9ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56daf6ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":65,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"00\",\"isLinked\":false},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":-390,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aea17a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"35ac5d9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"80795fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAY PRODUCTIVE AND CREATIVE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"120601a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1090fc12\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"97338e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis.\\u00a0<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b8dd68f\",\"elType\":\"widget\",\"settings\":{\"text\":\"READ MORE\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fafa552\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"568af8d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ab34f25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"77aa97c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2280a1d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7eeed54b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18fb783a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7e8608ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57729c88\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6ab3fc70\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"677437e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7aade116\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3066cfd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18ee64c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bb3d663\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7216af6\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LATEST CASE STUDIES\",\"align\":\"right\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76eb5c12\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"-100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"600d5787\",\"elType\":\"widget\",\"settings\":{\"title\":\"our works\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"40\",\"left\":\"-100\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3369f9e\",\"elType\":\"widget\",\"settings\":{\"text\":\"view all\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"80\",\"left\":\"-100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee87351\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Photography\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"},{\"id\":\"6cdb013e\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"3d Illustration\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false},{\"id\":\"2666bb09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3443e0c6\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Product Design\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":66,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":638,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":495,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"},{\"id\":\"6ddde3e2\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Packaging\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":67,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":590,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71ba9570\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"4d0ce7ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4d9a5a93\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Rating\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"51d04f4d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":231,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"1bdec8e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"ffe839a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"36e95be6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-team2\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4cb37ca3\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":132,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6269e61d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners Worldwide\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7e79cc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"6d777d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-hand_shake\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"43dec80\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":118,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"d52c4e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2233af49\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"7012ef37\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-trophy1\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68af5bd1\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":55,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"b00c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43803c06\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_size\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4df485b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5710ed33\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4420238e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7582fb51\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53dd5e12\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"999d77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"69c024c\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"6fb29266\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"343f2b64\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ebea9f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":68,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dda2fec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"164c009b\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bd65280\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"68161d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(606,119,'_elementor_page_assets','a:0:{}'),(607,119,'_elementor_import_session_id','6413f93187d95'),(608,120,'_elementor_edit_mode','builder'),(609,120,'_elementor_template_type','page'),(610,120,'_elementor_version','3.11.5'),(611,120,'_elementor_pro_version','3.11.6'),(612,120,'_elementor_data','[{\"id\":\"61ef411d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":68,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57b35edd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"237da969\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7002b420\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"929358d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"gradient\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":80,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"background_color\":\"#251AFF\",\"background_color_b\":\"#E84829\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":210,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":300},\"elements\":[{\"id\":\"90ea201\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_3.jpg\"},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c3f4850\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"6cd39560\",\"elType\":\"widget\",\"settings\":{\"title\":\"WELCOME TO OUR AGENCY\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15d01ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a9bc061\",\"elType\":\"widget\",\"settings\":{\"title\":\"the best agency\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c014562\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b95d714\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital project planning\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"In-House digital consulting\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Permanent and contract recruitement\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Developers and technical architects\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3e91a3fd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95d521a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2236e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":0},\"elements\":[{\"id\":\"31345786\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Rating\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5e8f631c\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":231},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"32c33c77\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7c9878a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ccacb53\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-team2\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"417ae507\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":132},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"88d1bf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners Worldwide\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"99dfab0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"8c1bd1d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-hand_shake\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2378ca37\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":118},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"3959e028\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3ed2d8fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"78be139\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-trophy1\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bdb6b52\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":55},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6cea10d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49d630bc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"375ba6ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ce0e764\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING THE BEST THINGS FOR YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"413ca708\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13d37ea7\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"625f8155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e35836c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"645f31ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bf1a92c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":200},\"elements\":[{\"id\":\"7597cdc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product Design\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5b0d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdb8c66\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2163ae4b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d99f2a9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"1e4691db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":200},\"elements\":[{\"id\":\"6a9918f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Development\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4fe2c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23f5fc84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2da71dcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"521c457f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"243c12f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":72,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a141f97\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b82cf64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"26900382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4dbc958e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":200},\"elements\":[{\"id\":\"29a131f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brain Storming\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c2e48df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"234a9221\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"228874e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7010df48\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4cd39da1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":200},\"elements\":[{\"id\":\"73fe727\",\"elType\":\"widget\",\"settings\":{\"title\":\"Marketing\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"623733b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"347c0b97\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2927b605\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"30a3e1e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"49a74766\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30ea4443\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"50cd206f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73ee7469\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT THEY SAY ABOUT US\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6be16f32\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f2e1a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonials\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"410dc9af\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"24e23faa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3df071bb\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"19fffb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"42158941\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"360e9539\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"989424e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4132138a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaa84a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"351101d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"950c4bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"174b22a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"3b668c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56526e1a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"76bf37b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6038abd0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4c3cb508\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ec315b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20d40236\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5f3fb0f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4604877c\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21b67fd8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8e1dc09\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(613,120,'_elementor_page_assets','a:0:{}'),(614,120,'_elementor_import_session_id','6413f93187d95'),(615,121,'_elementor_edit_mode','builder'),(616,121,'_elementor_template_type','page'),(617,121,'_elementor_version','3.11.5'),(618,121,'_elementor_pro_version','3.11.6'),(619,121,'_elementor_data','[{\"id\":\"6370eba3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":75,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/developers-working-in-masks-F97S4DR_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"589a9bb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31752a31\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR SERVICES\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e6eb0de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"3151bfe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25a38933\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT CAN WE OFFER FOR YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48e26a98\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c6ffac4\",\"elType\":\"widget\",\"settings\":{\"title\":\"our best service\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2566d0c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cb67982\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"12a8c24c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-smart\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"206d3a5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEVELOPMENT\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"337e9352\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"525907b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2a470345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"16165228\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Design-3\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"431b749b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANALYSIS\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b4426de\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16618779\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4c7919ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"454fd2a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-flower\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6ba18dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f60d1c8\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7149b04\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15d833d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":65,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"00\",\"isLinked\":false},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":-390,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cc79b3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10d1e7f7\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"#\",\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#251AFF\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"__globals__\":{\"ekit_video_popup_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=accent\"},\"ekit_video_popup_btn_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_delay\":400,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"10f8b817\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65455614\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d2ad98\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f236e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"190f3ddd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis.\\u00a0<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4cc99097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Creative Project 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"0fc8b67\"},{\"text\":\"Digital project planning and resourcing\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"ff9e4ef\"},{\"text\":\"Marketing Campaign\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"e567e1b\"},{\"text\":\"Product Consultant 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"b184e13\"},{\"text\":\"Head of Design and Marketing Department\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"819c19a\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5280cc17\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"323bbb99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"15f4fe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"CHOOSE YOUR PLANS\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b9f680\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3c00d65e\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eeb4ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4045880c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"border_hover_border\":\"solid\",\"border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"b0b292a\",\"elType\":\"widget\",\"settings\":{\"title\":\"BASIC\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5068e07\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$119<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6972bfcb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35fe4cc8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"56619bf7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand &amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37f71881\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dbcc2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"820083f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c056664\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10d31fc8\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"23a4cce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"14ca62b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"STANDARD\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f7edce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$129<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\",\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32900226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75089613\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e880a36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand\\u00a0&amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f81d21e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77001382\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fe02fc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"362d6337\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52d9c98\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"31055104\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"border_hover_border\":\"solid\",\"border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"12e443e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXPERT\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ff753a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$139<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29248d50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dbbd33f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52224830\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand\\u00a0&amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4dfbee32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"744f92e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"53f295dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23c466ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fdcdb2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5467ec3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62390ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f3bf8da\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5615327b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":76,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-2.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7d0d48cb\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"49458bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"44526525\",\"elType\":\"widget\",\"settings\":{\"title\":\"LET\'S WORK TOGETHER \",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70120a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554bb649\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f06444e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8838191\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"5e76ead5\",\"elType\":\"widget\",\"settings\":{\"title\":\"UNIQUE DIGITAL EXPERIENCES\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f26f04e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7b59cd92\",\"elType\":\"widget\",\"settings\":{\"title\":\"our special skills\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"536416e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29dbaa0d\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"UI\\/UX\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":85},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"dd128ab\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"BRANDING\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"f84ea68\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"ILLUSTRATION\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":95},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"2ca6b1c2\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"3D PROJECT\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":95},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"}],\"isInner\":false},{\"id\":\"4ab7ff71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"align\":\"flex-end\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"15b38a7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"68a65bce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-185\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-123\",\"right\":\"218\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"100\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(620,121,'_elementor_page_assets','a:0:{}'),(621,121,'_elementor_import_session_id','6413f93187d95'),(622,122,'_elementor_edit_mode','builder'),(623,122,'_elementor_template_type','page'),(624,122,'_elementor_version','3.11.5'),(625,122,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (626,122,'_elementor_data','[{\"id\":\"5ac4d328\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":75,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/developers-working-in-masks-F97S4DR_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae5cddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75266775\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR SERVICES\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"283938a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae4b3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"952ce16\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANOTHER WAY OF CREATIVE THINKING\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18cf3618\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3349f513\",\"elType\":\"widget\",\"settings\":{\"title\":\"our best service\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f31ee2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3efecf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"ccffeb0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-smart\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"51ce817b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANALYSIS\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18ea3154\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c0bef92\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"63ca41ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"1a69e047\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Design-3\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7534549e\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEVELOPMENT\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e18c7ad\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ce6bd19\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6f55ab32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"158a9f97\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-flower\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4a6cdd00\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a5e4377\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2801ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bb2e1bc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6155bda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"286d4cf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"613bc434\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"538ec90a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6580613b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7909d866\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"13120e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f06bc25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"677bea0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"156a2919\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"3659b8d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"504fc14f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c20a847\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":80,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"00\",\"isLinked\":false},\"background_position_tablet\":\"center center\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":-390,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fb2c91e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"7a8cb097\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"247e774b\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORY OF A BRAND\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"132b5fe5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"49232011\",\"elType\":\"widget\",\"settings\":{\"title\":\"our vision\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebcd78c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c08ac26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\",\"border_border\":\"solid\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f4a3eb6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c148b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"474e5311\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LATEST CASE STUDIES\",\"align\":\"right\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f80d02b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"-100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"518abefe\",\"elType\":\"widget\",\"settings\":{\"title\":\"our works\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"40\",\"left\":\"-100\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a93649\",\"elType\":\"widget\",\"settings\":{\"text\":\"view all\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"80\",\"left\":\"-100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73af62ee\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Photography\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"},{\"id\":\"30b51f52\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"3d Illustration\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false},{\"id\":\"1e744434\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43e2cbc5\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Product Design\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":66,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":638,\"sizes\":[]},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":495,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"},{\"id\":\"6c919051\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Packaging\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":67,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":590,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d08b034\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"249394aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cc91924\",\"elType\":\"widget\",\"settings\":{\"title\":\"LET\'S WORK TOGETHER \",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(627,122,'_elementor_page_assets','a:0:{}'),(628,122,'_elementor_import_session_id','6413f93187d95'),(629,123,'_elementor_edit_mode','builder'),(630,123,'_elementor_template_type','page'),(631,123,'_elementor_version','3.11.5'),(632,123,'_elementor_pro_version','3.11.6'),(633,123,'_elementor_data','[{\"id\":\"e7f0f8c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":83,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40e53652\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f2ed340\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTFOLIO\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26856792\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"195d67c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f4f049b\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PORTFOLIO\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4492f705\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"49feeff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"our works\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(634,123,'_elementor_page_assets','a:0:{}'),(635,123,'_elementor_import_session_id','6413f93187d95'),(636,124,'_elementor_edit_mode','builder'),(637,124,'_elementor_template_type','page'),(638,124,'_elementor_version','3.11.5'),(639,124,'_elementor_pro_version','3.11.6'),(640,124,'_elementor_data','[{\"id\":\"461f2c46\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":83,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"435683b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5ef63b0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTFOLIO\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c4fa9c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1683fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"610f205a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PORTFOLIO\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a836873\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"478c9b1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"our works\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(641,124,'_elementor_page_assets','a:0:{}'),(642,124,'_elementor_import_session_id','6413f93187d95'),(643,125,'_elementor_edit_mode','builder'),(644,125,'_elementor_template_type','page'),(645,125,'_elementor_version','3.11.5'),(646,125,'_elementor_pro_version','3.11.6'),(647,125,'_elementor_data','[{\"id\":\"13563fa9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/multiethnic-startup-business-team-on-meeting-PNMFSET_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.27000000000000002,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"2256179a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23298575\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR TEAM\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"507e4bd6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"426a0759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"3327b88b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-idea1\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5b9460da\",\"elType\":\"widget\",\"settings\":{\"title\":\"IDEAS & CONCEPT\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70fc55d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48e2f85d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"animation_delay\":200,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"93f86a0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user-1\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4f0a1ce0\",\"elType\":\"widget\",\"settings\":{\"title\":\"USER SATISFICATION\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3737f276\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1b59adaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"animation_delay\":400,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"764e75ad\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-bamboo-Leaf\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5262695\",\"elType\":\"widget\",\"settings\":{\"title\":\"FINAL PRODUCT\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"741a0f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ce4ee25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c5319df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5777d6bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20fe532f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15ad1f5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60a97822\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"75cd4c0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc74097\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"700558a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a6ddb9\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"24bf76e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"202593c7\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49d9bf81\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"4248488e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"34c82fb4\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"23fea1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7428576f\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"169be5af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d427a4\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29dbcffa\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_attachment\":\"fixed\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfedae4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd60b14\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24b41064\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"37b1c972\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e82ae33\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Packaging\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":67,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"},{\"ekit_img_accordion_title\":\"Branding\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":66,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"2e3e735\"},{\"ekit_img_accordion_title\":\"Photography\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"75a16bc\"},{\"ekit_img_accordion_title\":\"Mockup\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"d9b0610\"},{\"ekit_img_accordion_title\":\"3D Illustration\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"2f92db0\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"},\"items_style_mobile\":\"vertical\"},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41b28346\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"3f45780\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"cffa02\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74f2ed01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1fc7d762\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3a4b0b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"22ca346d\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3b478625\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"5a5940d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"49bb475\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"17b9485e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"35a4fbdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3852a513\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77592042\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"534a01ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7913c0e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57d295e1\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"31b03702\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bb9c7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(648,125,'_elementor_page_assets','a:0:{}'),(649,125,'_elementor_import_session_id','6413f93187d95'),(650,126,'_elementor_edit_mode','builder'),(651,126,'_elementor_template_type','page'),(652,126,'_elementor_version','3.11.5'),(653,126,'_elementor_pro_version','3.11.6'),(654,126,'_elementor_data','[{\"id\":\"2fc9c2a2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20103919\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49cd5d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TEAM MEMBER\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514b71ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"60862219\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e3836d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47caa80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5da67c92\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"432bb5b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":92,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/bg_Mesa-de-trabajo-1-copia_3.jpg\"},\"background_position\":\"center right\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":-25,\"sizes\":[]},\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"16ba51a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"LEONY HEART\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"187ebf8a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5bd62053\",\"elType\":\"widget\",\"settings\":{\"title\":\"Graphic Designer\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744c84ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Experience<\\/strong> : 7 Years<\\/p><p><strong>Email<\\/strong> : leonyheart@mail.com<\\/p><p><strong>Phone<\\/strong> :+1 234 567 890<\\/p><p><strong>Fax<\\/strong> : 1 234 567 890<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e01e2f9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=text\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b286259\",\"elType\":\"widget\",\"settings\":{\"title\":\"PERSONAL BIOGRAPHY\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20cc85b5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. Ut laoreet semper ligula, eget pretium purus congue a. Vivamus vehicula tincidunt magna, ac posuere nulla molestie placerat. Vivamus neque orci, scelerisque quis metus vel, bibendum volutpat leo. Donec eu mollis est.<\\/p><p>Sed sit amet dolor et enim elementum pellentesque. Praesent pulvinar odio ligula, nec ultricies nunc vehicula a. Duis sodales purus velit, nec tincidunt tortor maximus sed. Suspendisse imperdiet gravida ex sit amet ullamcorper.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b299542\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a0c2d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"19b74dd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKILL SET\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"759c00ff\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"UI\\/UX\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":85},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1bbfb834\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"BRANDING\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"379b3f61\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"ILLUSTRATION\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":95},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"}],\"isInner\":true},{\"id\":\"2d0ab0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"144e3fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACTIVITIES\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66d34de1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Creative Project 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"0fc8b67\"},{\"text\":\"Digital project planning and resourcing\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"ff9e4ef\"},{\"text\":\"Marketing Campaign\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"e567e1b\"},{\"text\":\"Product Consultant 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"b184e13\"},{\"text\":\"Head of Design and Marketing Department\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"819c19a\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"41eefdea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PERSONAL EXPERIENCE\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782f781a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. Ut laoreet semper ligula, eget pretium purus congue a. Vivamus vehicula tincidunt magna, ac posuere nulla molestie placerat. Vivamus neque orci, scelerisque quis metus vel, bibendum volutpat leo. Donec eu mollis est.<\\/p><p>Sed sit amet dolor et enim elementum pellentesque. Praesent pulvinar odio ligula, nec ultricies nunc vehicula a. Duis sodales purus velit, nec tincidunt tortor maximus sed. Suspendisse imperdiet gravida ex sit amet ullamcorper.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18384eaa\",\"elType\":\"widget\",\"settings\":{\"title\":\"LEAVE A REPLY\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f44f1d6\",\"elType\":\"widget\",\"settings\":{\"ekit_wpform_form_id\":\"497\",\"ekit_wpForms_field_border_border\":\"solid\",\"ekit_wpForms_field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_wpForms_field_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_wpForms_field_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"ekit_wpForms_button_border_normal_border\":\"solid\",\"ekit_wpForms_button_border_normal_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_wpForms_button_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"ekit_wpForms_text_color_label\":\"globals\\/colors?id=text\",\"ekit_wpForms_field_bg_color\":\"\",\"ekit_wpForms_field_text_color\":\"globals\\/colors?id=text\",\"ekit_wpForms_field_description_text_color\":\"globals\\/colors?id=a41d1b1\",\"ekit_wpForms_field_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_wpForms_field_typography_typography\":\"globals\\/typography?id=text\",\"ekit_wpForms_text_color_placeholder\":\"globals\\/colors?id=a41d1b1\",\"ekit_wpForms_button_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_wpForms_button_bg_color_normal\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_text_color_normal\":\"globals\\/colors?id=primary\",\"ekit_wpForms_button_bg_color_hover\":\"globals\\/colors?id=primary\",\"ekit_wpForms_button_text_color_hover\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_border_color_hover\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_border_normal_color\":\"globals\\/colors?id=accent\"},\"ekit_wpForms_text_color_label\":\"#000000\",\"ekit_wpForms_field_bg_color\":\"#F6F6F6\",\"ekit_wpForms_field_text_color\":\"#000000\",\"ekit_wpForms_field_description_text_color\":\"#3F3F3F\",\"ekit_wpForms_field_description_typography_typography\":\"custom\",\"ekit_wpForms_field_description_typography_font_family\":\"Poppins\",\"ekit_wpForms_field_description_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_weight\":\"400\",\"ekit_wpForms_field_typography_typography\":\"custom\",\"ekit_wpForms_field_typography_font_family\":\"Poppins\",\"ekit_wpForms_field_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_field_typography_font_weight\":\"400\",\"ekit_wpForms_text_color_placeholder\":\"#3F3F3F\",\"ekit_wpForms_button_align\":\"center\",\"ekit_wpForms_button_typography_typography\":\"custom\",\"ekit_wpForms_button_typography_font_family\":\"Poppins\",\"ekit_wpForms_button_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_button_typography_font_weight\":\"600\",\"ekit_wpForms_button_typography_text_transform\":\"uppercase\",\"ekit_wpForms_button_bg_color_normal\":\"#251AFF\",\"ekit_wpForms_button_text_color_normal\":\"#FFFFFF\",\"ekit_wpForms_button_border_normal_color\":\"#251AFF\",\"ekit_wpForms_button_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_wpForms_button_bg_color_hover\":\"#FFFFFF\",\"ekit_wpForms_button_text_color_hover\":\"#251AFF\",\"ekit_wpForms_button_border_color_hover\":\"#251AFF\"},\"elements\":[],\"widgetType\":\"elementskit-wp-forms\"}],\"isInner\":false}],\"isInner\":false}]'),(655,126,'_elementor_page_assets','a:0:{}'),(656,126,'_elementor_import_session_id','6413f93187d95'),(657,127,'_elementor_edit_mode','builder'),(658,127,'_elementor_template_type','page'),(659,127,'_elementor_version','3.11.5'),(660,127,'_elementor_pro_version','3.11.6'),(661,127,'_elementor_data','[{\"id\":\"5014d701\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":95,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eaebaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d2b6c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQS\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65ed017a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd2905c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5690f9ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE HERE TO HELP YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b8fa879\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"78137199\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick support\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48512712\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"60486310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"2a4e7dfd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-smart\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6d78cd73\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANALYSIS\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"734148cb\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"403da686\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"33407c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"24d981f8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Design-3\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"69f4dae\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEVELOPMENT\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6227f06b\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"266b5a35\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2cbb20bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"42c46113\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-flower\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-50\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4656c59a\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2899aed\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e33bc6d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bfc7358\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":65,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg\"},\"background_position\":\"initial\",\"background_position_tablet\":\"center left\",\"background_ypos\":{\"unit\":\"px\",\"size\":-150,\"sizes\":[]},\"background_size\":\"cover\",\"background_size_tablet\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"feecab3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"554998e3\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\",\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#251AFF\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"__globals__\":{\"ekit_video_popup_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=accent\"},\"ekit_video_popup_btn_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"310a089f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71522c7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"32\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6bbb9298\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26661c9\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"798743ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"do you know?\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ae147c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3dc729f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2a4ed97f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"120\",\"left\":\"40\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(662,127,'_elementor_page_assets','a:0:{}'),(663,127,'_elementor_import_session_id','6413f93187d95'),(664,128,'_elementor_edit_mode','builder'),(665,128,'_elementor_template_type','page'),(666,128,'_elementor_version','3.11.5'),(667,128,'_elementor_pro_version','3.11.6'),(668,128,'_elementor_data','[{\"id\":\"2221dd59\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":98,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b21ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3817c8d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT US\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56615444\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10669d93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2547535f\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACT\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65756a2f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a49dea\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f0c2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fcec224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E7E7E7\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48edc522\",\"elType\":\"widget\",\"settings\":{\"title\":\"MURRAY\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdd1743\",\"elType\":\"widget\",\"settings\":{\"text\":\"2930 Philadelphia Avenue\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7673355\",\"elType\":\"widget\",\"settings\":{\"text\":\"801-265-6514\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"420e82da\",\"elType\":\"widget\",\"settings\":{\"text\":\"anymail@jmail.com\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"453fcf6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E7E7E7\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5239f11b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALABASTA\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724a29e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"2930 Philadelphia Avenue\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2f5333e6\",\"elType\":\"widget\",\"settings\":{\"text\":\"801-265-6514\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"649c07b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"anymail@jmail.com\",\"align\":\"center\",\"background_color\":\"#251AFF00\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"-2\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=a41d1b1\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"667548dd\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c282886\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":99,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A_3.jpg\"},\"background_position\":\"initial\",\"background_position_tablet\":\"center center\",\"background_ypos\":{\"unit\":\"px\",\"size\":-58,\"sizes\":[]},\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"33676c1c\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"25b57896\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"7cd62c01\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT US\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bb69783\",\"elType\":\"widget\",\"settings\":{\"ekit_wpform_form_id\":\"497\",\"ekit_wpForms_field_border_border\":\"solid\",\"ekit_wpForms_field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_wpForms_field_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_wpForms_field_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"ekit_wpForms_button_border_normal_border\":\"solid\",\"ekit_wpForms_button_border_normal_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_wpForms_button_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"ekit_wpForms_text_color_label\":\"globals\\/colors?id=text\",\"ekit_wpForms_field_bg_color\":\"globals\\/colors?id=primary\",\"ekit_wpForms_field_text_color\":\"globals\\/colors?id=text\",\"ekit_wpForms_field_description_text_color\":\"globals\\/colors?id=a41d1b1\",\"ekit_wpForms_field_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_wpForms_field_typography_typography\":\"globals\\/typography?id=text\",\"ekit_wpForms_text_color_placeholder\":\"\",\"ekit_wpForms_button_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_wpForms_button_bg_color_normal\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_text_color_normal\":\"globals\\/colors?id=primary\",\"ekit_wpForms_button_bg_color_hover\":\"globals\\/colors?id=primary\",\"ekit_wpForms_button_text_color_hover\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_border_color_hover\":\"globals\\/colors?id=accent\",\"ekit_wpForms_button_border_normal_color\":\"globals\\/colors?id=accent\"},\"ekit_wpForms_text_color_label\":\"#000000\",\"ekit_wpForms_field_bg_color\":\"#FFFFFF\",\"ekit_wpForms_field_text_color\":\"#000000\",\"ekit_wpForms_field_description_text_color\":\"#3F3F3F\",\"ekit_wpForms_field_description_typography_typography\":\"custom\",\"ekit_wpForms_field_description_typography_font_family\":\"Poppins\",\"ekit_wpForms_field_description_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_field_description_typography_font_weight\":\"400\",\"ekit_wpForms_field_description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"ekit_wpForms_field_typography_typography\":\"custom\",\"ekit_wpForms_field_typography_font_family\":\"Poppins\",\"ekit_wpForms_field_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_field_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_field_typography_font_weight\":\"400\",\"ekit_wpForms_field_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"ekit_wpForms_text_color_placeholder\":\"#868686\",\"ekit_wpForms_button_typography_typography\":\"custom\",\"ekit_wpForms_button_typography_font_family\":\"Poppins\",\"ekit_wpForms_button_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_wpForms_button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_wpForms_button_typography_font_weight\":\"600\",\"ekit_wpForms_button_typography_text_transform\":\"uppercase\",\"ekit_wpForms_button_bg_color_normal\":\"#251AFF\",\"ekit_wpForms_button_text_color_normal\":\"#FFFFFF\",\"ekit_wpForms_button_border_normal_color\":\"#251AFF\",\"ekit_wpForms_button_bg_color_hover\":\"#FFFFFF\",\"ekit_wpForms_button_text_color_hover\":\"#251AFF\",\"ekit_wpForms_button_border_color_hover\":\"#251AFF\"},\"elements\":[],\"widgetType\":\"elementskit-wp-forms\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a895100\",\"elType\":\"widget\",\"settings\":{\"title\":\"HAVE ANY QUESTION? JUST SAY HI!\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeIn\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59a933b\",\"elType\":\"widget\",\"settings\":{\"text\":\"GET IN TOUCH\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"_animation\":\"fadeIn\",\"_animation_delay\":200,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39b8a661\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"2398a281\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f25b787\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"css_filters_css_filter\":\"custom\",\"css_filters_contrast\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":211,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(669,128,'_elementor_page_assets','a:0:{}'),(670,128,'_elementor_import_session_id','6413f93187d95'),(671,129,'_elementor_edit_mode','builder'),(672,129,'_elementor_template_type','page'),(673,129,'_elementor_version','3.11.5'),(674,129,'_elementor_pro_version','3.11.6'),(675,129,'_elementor_data','[{\"id\":\"694dffe6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"350\",\"right\":\"0\",\"bottom\":\"250\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":103,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_3.jpg\"},\"background_size\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"adea796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"715281f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"500\",\"bottom\":\"50\",\"left\":\"500\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"320\",\"bottom\":\"0\",\"left\":\"320\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"361c1b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMING SOON\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\",\"title_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(676,129,'_elementor_page_assets','a:0:{}'),(677,129,'_elementor_import_session_id','6413f93187d95'),(678,130,'_elementor_edit_mode','builder'),(679,130,'_elementor_template_type','section'),(680,130,'_elementor_version','3.11.5'),(681,130,'_elementor_pro_version','3.11.6'),(682,130,'_elementor_data','[{\"id\":\"2511ea55\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"350\",\"right\":\"0\",\"bottom\":\"310\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":106,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/male-hacker-stealing-data-HCLSABP_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d4c7c3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35ae8e0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"4 0 4 \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3a95010\",\"title_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16af66eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"SORRY THE PAGE NOT FOUND\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36a0de8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The page you are looking for maybe was moved, removed, renamed or never existed.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"350\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"265b3366\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon_text\",\"placeholder\":\"   Search...\",\"input_placeholder_color\":\"#BCBCBC\",\"input_background_color\":\"#F2F2F2\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"350\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"200\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_background_color\":\"globals\\/colors?id=primary\",\"input_placeholder_color\":\"\",\"button_background_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=accent\",\"hover_close_icon_text\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":false}],\"isInner\":false}]'),(683,130,'_elementor_page_assets','a:0:{}'),(684,130,'_elementor_import_session_id','6413f93187d95'),(685,131,'_elementor_edit_mode','builder'),(686,131,'_elementor_template_type','page'),(687,131,'_elementor_version','3.11.5'),(688,131,'_elementor_pro_version','3.11.6'),(689,131,'_elementor_data','[{\"id\":\"79184c1c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":109,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ecefca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ffea858\",\"elType\":\"widget\",\"settings\":{\"title\":\"BLOG\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"501c625f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c657ca4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"6a66516d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e96fc9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59ec6ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52727e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"24a4a8df\",\"elType\":\"widget\",\"settings\":{\"title\":\"LINDA STRIS\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-7\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e067ee3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life is like a boat<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47102b53\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f156fbc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon_text\",\"placeholder\":\"   Search...\",\"input_placeholder_color\":\"#CBCBCB\",\"input_background_color\":\"#F8F8F8\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_background_color\":\"\",\"input_placeholder_color\":\"\",\"button_background_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=accent\",\"hover_close_icon_text\":\"globals\\/colors?id=accent\"},\"button_background_color\":\"#251AFF\",\"text_color\":\"#251AFF\",\"hover_close_icon_text\":\"#251AFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"},{\"id\":\"5d4451cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"CATEGORIES\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b670a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"GALLERY\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bef647b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f27ded5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb07cc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":110,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/walling-52H5Nfi5WiE-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c476e42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6e196160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"191eefa8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"46f17809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e629c3c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ecd8330\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"30a42984\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"757669a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEED A DESIGN?\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d553953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>let\'s get to work<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ab1157e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#251AFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#251AFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(690,131,'_elementor_page_assets','a:0:{}'),(691,131,'_elementor_import_session_id','6413f93187d95'),(692,132,'_elementor_edit_mode','builder'),(693,132,'_elementor_template_type','section'),(694,132,'_elementor_version','3.11.5'),(695,132,'_elementor_pro_version','3.11.6'),(696,132,'_elementor_data','[{\"id\":\"4ff73cec\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":68,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"290\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a14bd1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"458df25e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"8625f96\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":6.5449999999999999,\"_inline_size_tablet\":10},\"elements\":[{\"id\":\"7875d074\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"543570cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.7430000000000003,\"content_position\":\"center\",\"_inline_size_tablet\":18},\"elements\":[],\"isInner\":true},{\"id\":\"31251dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":2.1989999999999998,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"6f079fe4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>||<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-2\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"17ec0050\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":81.513000000000005,\"content_position\":\"center\",\"_inline_size_tablet\":64},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7eae9be6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"25d18eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6d7796ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"463520c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"721520e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"530f810b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum. Vestibulum tincidunt porta nulla. Nulla egestas ligula at molestie pulvinar. Cras nec porta lorem, et eleifend risus. Aenean pretium sit amet metus eget volutpat. Sed in diam quis nunc sollicitudin euismod nec in felis.<\\/p><p>Nullam consequat, arcu vitae posuere tincidunt, diam tortor bibendum sapien, in convallis velit est nec odio. In congue faucibus dui eget commodo. Integer et ante nibh. Pellentesque in placerat magna, sed imperdiet quam. Pellentesque nulla massa, convallis sed lectus at, dignissim porttitor mauris. Integer in sapien porta arcu viverra mollis id sit amet tortor. Etiam mattis augue quis mauris pellentesque, quis sollicitudin mauris rhoncus. Duis tincidunt mauris quis euismod consequat. Praesent erat arcu, cursus quis ornare eu, euismod vel nisl. Morbi maximus at lectus vitae tincidunt. Nulla quis scelerisque neque. Donec luctus, ipsum porta luctus porta, neque est vulputate ante, a bibendum est augue vitae erat. Proin ut efficitur tellus. Nulla interdum ornare tempus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"693631cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Many of life\\u2019s failures are people who did not realize how close they were to success when they gave up.\\\" \\u2013 Thomas A. Edison\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3047230d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum. Vestibulum tincidunt porta nulla. Nulla egestas ligula at molestie pulvinar. Cras nec porta lorem, et eleifend risus. Aenean pretium sit amet metus eget volutpat. Sed in diam quis nunc sollicitudin euismod nec in felis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74e7af84\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"745b5921\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"122ce8a9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"150\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"308bc206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.663,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"background_background\":\"classic\",\"background_image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"background_image_tablet\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/wp-content\\/uploads\\/sites\\/4\\/2021\\/04\\/runda_Artboard-1_portrait-min.jpeg\",\"id\":87},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c8b9658\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"19c96cd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.337000000000003,\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"172035a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fcea653\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"},{\"_id\":\"d8ec4c7\",\"social_icon\":{\"value\":\"fab fa-reddit\",\"library\":\"fa-brands\"}}],\"shape\":\"circle\",\"columns\":\"4\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-18\",\"isLinked\":false},\"columns_mobile\":\"4\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=text\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7663ca8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14b459fe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"289d514f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"3335c44a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23b11af7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life is like a boat<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3db58f06\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21dba624\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon_text\",\"placeholder\":\"   Search...\",\"input_placeholder_color\":\"#CBCBCB\",\"input_background_color\":\"#F8F8F8\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_background_color\":\"\",\"input_placeholder_color\":\"\",\"button_background_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=accent\",\"hover_close_icon_text\":\"globals\\/colors?id=accent\"},\"button_background_color\":\"#251AFF\",\"text_color\":\"#251AFF\",\"hover_close_icon_text\":\"#251AFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"},{\"id\":\"7db3257b\",\"elType\":\"widget\",\"settings\":{\"title\":\"CATEGORIES\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20a27936\",\"elType\":\"widget\",\"settings\":{\"title\":\"GALLERY\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4715e024\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9cc3f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbee65c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":110,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/walling-52H5Nfi5WiE-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3c53bb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"389ca1e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6449b07c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1326f5c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ad06b12\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"70413f10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78face7c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"78e0151e\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEED A DESIGN?\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4026cf7f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>let\'s get to work<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"578ff4af\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#251AFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#251AFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(697,132,'_elementor_page_assets','a:0:{}'),(698,132,'_elementor_import_session_id','6413f93187d95'),(699,133,'_elementor_edit_mode','builder'),(700,133,'_elementor_template_type','section'),(701,133,'_elementor_version','3.11.5'),(702,133,'_elementor_pro_version','3.11.6'),(703,133,'_elementor_data','[{\"id\":\"7efc6c53\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"1dda0fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":10,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad543f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4b30f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":90,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41b69566\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76ec02db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":90,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[],\"isInner\":true},{\"id\":\"5f00bdf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":10,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"31fcd0df\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(704,133,'_elementor_page_assets','a:0:{}'),(705,133,'_elementor_import_session_id','6413f93187d95'),(706,134,'_elementor_edit_mode','builder'),(707,134,'_elementor_template_type','section'),(708,134,'_elementor_version','3.11.5'),(709,134,'_elementor_pro_version','3.11.6'),(710,134,'_elementor_data','[{\"id\":\"42d2b7b0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"549e349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"677b32a3\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"275\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4a9c392a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1411a492\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2750 Goodwin Avenue, Washington, USA<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"46992ed8\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"727661b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>runda@anymail.com<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29eaace7\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d785ae4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>509-364-0482<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24d1eda7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"1fb4c279\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d62a5a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6fc865d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ab4ce09\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"18fa184b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c1cc90d\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9f1806\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6656e9ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"417dc4d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5280d524\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(711,134,'_elementor_page_assets','a:0:{}'),(712,134,'_elementor_import_session_id','6413f93187d95'),(713,8,'_elementor_pro_version','3.11.6'),(724,136,'_wp_page_template','elementor_header_footer'),(725,136,'_elementor_edit_mode','builder'),(726,136,'_elementor_template_type','wp-post'),(727,136,'_elementor_version','3.11.5'),(728,136,'_elementor_pro_version','3.11.6'),(729,137,'_wp_page_template','elementor_header_footer'),(730,137,'_elementor_edit_mode','builder'),(731,137,'_elementor_template_type','wp-post'),(732,137,'_elementor_version','3.11.5'),(733,137,'_elementor_pro_version','3.11.6'),(734,8,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"resp_align\":\"right\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"toggle_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":61,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(735,138,'_wp_page_template','elementor_header_footer'),(736,138,'_elementor_edit_mode','builder'),(737,138,'_elementor_template_type','wp-post'),(738,138,'_elementor_version','3.11.5'),(739,138,'_elementor_pro_version','3.11.6'),(740,138,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(741,8,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(742,139,'_edit_last','1'),(743,139,'_edit_lock','1714362763:1'),(744,139,'_wp_page_template','elementor_header_footer'),(745,139,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(746,139,'ehf_target_exclude_locations','a:0:{}'),(747,139,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(748,139,'ehf_template_type','type_footer'),(749,139,'_elementor_edit_mode','builder'),(750,139,'_elementor_template_type','wp-post'),(751,139,'_elementor_version','3.12.2'),(752,139,'_elementor_pro_version','3.11.6'),(755,139,'ekit_post_views_count','5'),(756,141,'_wp_page_template','elementor_header_footer'),(757,141,'_elementor_edit_mode','builder'),(758,141,'_elementor_template_type','wp-post'),(759,141,'_elementor_version','3.11.5'),(760,141,'_elementor_pro_version','3.11.6'),(762,142,'_wp_page_template','elementor_header_footer'),(763,142,'_elementor_edit_mode','builder'),(764,142,'_elementor_template_type','wp-post'),(765,142,'_elementor_version','3.11.5'),(766,142,'_elementor_pro_version','3.11.6'),(768,139,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"motion_fx_mouseTrack_effect\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(769,143,'_wp_page_template','elementor_header_footer'),(770,143,'_elementor_edit_mode','builder'),(771,143,'_elementor_template_type','wp-post'),(772,143,'_elementor_version','3.11.5'),(773,143,'_elementor_pro_version','3.11.6'),(775,143,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"275\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(776,139,'_elementor_page_assets','a:0:{}'),(777,144,'_edit_lock','1683237668:1'),(778,144,'_wp_page_template','elementor_header_footer'),(779,144,'_elementor_edit_mode','builder'),(780,144,'_elementor_template_type','wp-page'),(781,144,'_elementor_version','3.12.2'),(782,144,'_elementor_pro_version','3.11.6'),(785,13,'ekit_post_views_count','1'),(793,147,'_wp_page_template','elementor_header_footer'),(794,147,'_elementor_edit_mode','builder'),(795,147,'_elementor_template_type','wp-page'),(796,147,'_elementor_version','3.11.5'),(797,147,'_elementor_pro_version','3.11.6'),(798,148,'_wp_page_template','elementor_header_footer'),(799,148,'_elementor_edit_mode','builder'),(800,148,'_elementor_template_type','wp-page'),(801,148,'_elementor_version','3.11.5'),(802,148,'_elementor_pro_version','3.11.6'),(803,144,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(804,149,'_wp_page_template','elementor_header_footer'),(805,149,'_elementor_edit_mode','builder'),(806,149,'_elementor_template_type','wp-page'),(807,149,'_elementor_version','3.11.5'),(808,149,'_elementor_pro_version','3.11.6'),(809,149,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(810,144,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(811,150,'_edit_lock','1679033363:1'),(812,150,'_wp_page_template','elementor_header_footer'),(813,150,'_elementor_edit_mode','builder'),(814,150,'_elementor_template_type','wp-page'),(815,150,'_elementor_version','3.11.5'),(816,150,'_elementor_pro_version','3.11.6'),(817,152,'_wp_page_template','elementor_header_footer'),(818,152,'_elementor_edit_mode','builder'),(819,152,'_elementor_template_type','wp-page'),(820,152,'_elementor_version','3.11.5'),(821,152,'_elementor_pro_version','3.11.6'),(822,153,'_wp_page_template','elementor_header_footer'),(823,153,'_elementor_edit_mode','builder'),(824,153,'_elementor_template_type','wp-page'),(825,153,'_elementor_version','3.11.5'),(826,153,'_elementor_pro_version','3.11.6'),(827,150,'_elementor_data','[{\"id\":\"5a6a76b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":68,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22751af1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f87cf9b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37569928\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"191adb6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"gradient\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":80,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"background_color\":\"#251AFF\",\"background_color_b\":\"#E84829\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":210,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":300},\"elements\":[{\"id\":\"324ee650\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_3.jpg\"},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"27dc0516\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"7d73f530\",\"elType\":\"widget\",\"settings\":{\"title\":\"WELCOME TO OUR AGENCY\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71f68233\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"57d61fff\",\"elType\":\"widget\",\"settings\":{\"title\":\"the best agency\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b58c8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39049ff6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital project planning\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"In-House digital consulting\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Permanent and contract recruitement\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Developers and technical architects\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"39679d0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"547dd044\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7071f4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":0},\"elements\":[{\"id\":\"5a592bfb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Rating\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7405681f\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":231},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"1e6df398\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"18bfd978\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"1f8a99ee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-team2\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"17da32ba\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":132},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"50f632f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners Worldwide\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"56702740\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"262da24f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-hand_shake\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"58d0daf\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":118},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6bf374da\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1c8b08e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"497617ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-trophy1\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"12e35dab\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":55},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"4ba711ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20e4d8b7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"11b8c2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"19456031\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING THE BEST THINGS FOR YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b395e01\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"405648f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61995431\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49f5fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"37537920\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"355eb884\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":200},\"elements\":[{\"id\":\"42f95140\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product Design\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"445206c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"670f9b37\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"23308a70\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"74c55021\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"6c6efa3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":200},\"elements\":[{\"id\":\"75f764ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Development\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e315d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52d2bb28\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5093686b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"558eedf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1576e615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":72,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"70a5b3c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cb83cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6846e783\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"31c7b868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":200},\"elements\":[{\"id\":\"386cb81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brain Storming\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b9a528d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d40e829\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3cb66efb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6bd517d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"69febd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":200},\"elements\":[{\"id\":\"46b4ec55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Marketing\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13ffb78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28d0e483\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"58f021f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"799d60e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"32494666\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e72947a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"58d1a2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b3bb6fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT THEY SAY ABOUT US\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"192c8065\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9b21f07\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonials\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7853fdf9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"5140f941\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"14eea363\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"6c323e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3579ab11\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"526b6126\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1c9f05ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"618c16ab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6e0febdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"567af19a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"47ece71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d8d8a5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"38760283\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe389b7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"386dc85c\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d476b8a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4e9727dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ce8c00b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a368c00\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"75bd53d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4520cd95\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cc375f7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6c649f71\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(828,154,'_wp_page_template','elementor_header_footer'),(829,154,'_elementor_edit_mode','builder'),(830,154,'_elementor_template_type','wp-page'),(831,154,'_elementor_version','3.11.5'),(832,154,'_elementor_pro_version','3.11.6'),(833,154,'_elementor_data','[{\"id\":\"5a6a76b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":68,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22751af1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f87cf9b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37569928\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"191adb6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"gradient\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":80,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"background_color\":\"#251AFF\",\"background_color_b\":\"#E84829\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":210,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":300},\"elements\":[{\"id\":\"324ee650\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":71,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_3.jpg\"},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"27dc0516\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"7d73f530\",\"elType\":\"widget\",\"settings\":{\"title\":\"WELCOME TO OUR AGENCY\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71f68233\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"57d61fff\",\"elType\":\"widget\",\"settings\":{\"title\":\"the best agency\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b58c8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39049ff6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital project planning\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"In-House digital consulting\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Permanent and contract recruitement\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Developers and technical architects\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"39679d0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"547dd044\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7071f4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":0},\"elements\":[{\"id\":\"5a592bfb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Rating\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7405681f\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":231},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"1e6df398\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"18bfd978\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"1f8a99ee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-team2\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"17da32ba\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":132},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"50f632f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners Worldwide\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"56702740\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"262da24f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-hand_shake\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"58d0daf\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":118},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6bf374da\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1c8b08e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_mobile\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"497617ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-trophy1\",\"library\":\"ekiticons\"},\"primary_color\":\"#E84829\",\"size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"12e35dab\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":55},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"4ba711ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"align\":\"center\",\"title_color\":\"#3F3F3F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20e4d8b7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"11b8c2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"19456031\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING THE BEST THINGS FOR YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b395e01\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"405648f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61995431\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49f5fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"37537920\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"355eb884\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":200},\"elements\":[{\"id\":\"42f95140\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product Design\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"445206c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"670f9b37\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"23308a70\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"74c55021\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"6c6efa3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":200},\"elements\":[{\"id\":\"75f764ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Development\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e315d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52d2bb28\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5093686b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"558eedf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1576e615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":72,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"70a5b3c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cb83cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6846e783\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"31c7b868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":200},\"elements\":[{\"id\":\"386cb81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brain Storming\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b9a528d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d40e829\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3cb66efb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6bd517d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"69febd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":200},\"elements\":[{\"id\":\"46b4ec55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Marketing\",\"title_color\":\"#000000\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13ffb78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28d0e483\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Packaging Design\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"f9403c3\"},{\"text\":\"Product Mockup\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"de3c3f8\"},{\"text\":\"Product Photography\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"4bd94cd\"},{\"text\":\"Branding ideas\",\"selected_icon\":{\"value\":\"fas fa-square-full\",\"library\":\"fa-solid\"},\"_id\":\"1a31453\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#251AFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"text_color\":\"#3F3F3F\",\"text_color_hover\":\"#3F3F3F\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"text_color_hover\":\"\"},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"58f021f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"border_border\":\"solid\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"799d60e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"32494666\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e72947a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"58d1a2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b3bb6fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT THEY SAY ABOUT US\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"192c8065\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9b21f07\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonials\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7853fdf9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"5140f941\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"14eea363\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"6c323e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3579ab11\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"526b6126\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1c9f05ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"618c16ab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6e0febdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"567af19a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"47ece71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d8d8a5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"38760283\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe389b7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"386dc85c\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d476b8a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4e9727dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ce8c00b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a368c00\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"75bd53d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4520cd95\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cc375f7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeIn\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6c649f71\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeIn\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(834,150,'_elementor_page_assets','a:1:{s:6:\"styles\";a:31:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";}}'),(835,155,'_edit_lock','1679033521:1'),(836,155,'_wp_page_template','elementor_header_footer'),(837,155,'_elementor_edit_mode','builder'),(838,155,'_elementor_template_type','wp-page'),(839,155,'_elementor_version','3.11.5'),(840,155,'_elementor_pro_version','3.11.6'),(841,157,'_wp_page_template','elementor_header_footer'),(842,157,'_elementor_edit_mode','builder'),(843,157,'_elementor_template_type','wp-page'),(844,157,'_elementor_version','3.11.5'),(845,157,'_elementor_pro_version','3.11.6'),(846,158,'_wp_page_template','elementor_header_footer'),(847,158,'_elementor_edit_mode','builder'),(848,158,'_elementor_template_type','wp-page'),(849,158,'_elementor_version','3.11.5'),(850,158,'_elementor_pro_version','3.11.6'),(851,155,'_elementor_data','[{\"id\":\"3e38629f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/multiethnic-startup-business-team-on-meeting-PNMFSET_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.27000000000000002,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"71bbf861\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7efcf0a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR TEAM\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4498fca0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db90320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"258d0be2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-idea1\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"302c25d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"IDEAS & CONCEPT\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66827fd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1e3ee743\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"animation_delay\":200,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"10f26823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user-1\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"682ef5cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"USER SATISFICATION\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"481da334\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f914f59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"animation_delay\":400,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"78e2f62b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-bamboo-Leaf\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1860a6e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FINAL PRODUCT\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1270f8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"590122d2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65232f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38ab571\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6967ed61\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7379c9ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14808946\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"b460517\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"442311c1\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"5495a3e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"224cf98f\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"286f14dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5895d571\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fddc1a0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"6e0cc9ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe1ebc8\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"2436ef85\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8777136\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"55a5bc7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f58a480\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247ec8e8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_attachment\":\"fixed\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e77d117\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f4d6e4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39eb9719\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6bfc6eaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e308636\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Packaging\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":67,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"},{\"ekit_img_accordion_title\":\"Branding\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":66,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"2e3e735\"},{\"ekit_img_accordion_title\":\"Photography\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"75a16bc\"},{\"ekit_img_accordion_title\":\"Mockup\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"d9b0610\"},{\"ekit_img_accordion_title\":\"3D Illustration\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"2f92db0\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"},\"items_style_mobile\":\"vertical\"},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"784a6d2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"3c86c578\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"88239b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e920a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4df81f9d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"b8ea96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"123f4089\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e391aa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"43264649\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24123b02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"6923b48b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5c844be6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fd2ec9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f8be2c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"462ceaf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"712d9d90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"6d22469e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"77c2e5be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"204b7f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(852,159,'_wp_page_template','elementor_header_footer'),(853,159,'_elementor_edit_mode','builder'),(854,159,'_elementor_template_type','wp-page'),(855,159,'_elementor_version','3.11.5'),(856,159,'_elementor_pro_version','3.11.6'),(857,159,'_elementor_data','[{\"id\":\"3e38629f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/multiethnic-startup-business-team-on-meeting-PNMFSET_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.27000000000000002,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"71bbf861\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7efcf0a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR TEAM\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4498fca0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db90320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"258d0be2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-idea1\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"302c25d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"IDEAS & CONCEPT\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66827fd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1e3ee743\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"animation_delay\":200,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"10f26823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user-1\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"682ef5cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"USER SATISFICATION\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"481da334\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f914f59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#02010100\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=accent\"},\"animation\":\"fadeIn\",\"animation_delay\":400,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"78e2f62b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-bamboo-Leaf\",\"library\":\"ekiticons\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1860a6e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FINAL PRODUCT\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1270f8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"590122d2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65232f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38ab571\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6967ed61\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7379c9ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14808946\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"b460517\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"442311c1\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"5495a3e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"224cf98f\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"286f14dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5895d571\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fddc1a0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"6e0cc9ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe1ebc8\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"2436ef85\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8777136\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"55a5bc7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f58a480\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247ec8e8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_attachment\":\"fixed\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e77d117\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f4d6e4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39eb9719\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6bfc6eaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e308636\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_title\":\"Packaging\",\"_id\":\"6981fd8\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":67,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\"},{\"ekit_img_accordion_title\":\"Branding\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":66,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"2e3e735\"},{\"ekit_img_accordion_title\":\"Photography\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":64,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/ian-dooley-y_CSTKJ0bEs-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"75a16bc\"},{\"ekit_img_accordion_title\":\"Mockup\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"d9b0610\"},{\"ekit_img_accordion_title\":\"3D Illustration\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"},\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"_id\":\"2f92db0\"}],\"active_behavior\":\"hover\",\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_bg_active_color_color\":\"#251AFF87\",\"ekit_img_accordion_btn_text_color\":\"#251AFF\",\"ekit_img_accordion_btn_bg_color_group_background\":\"classic\",\"ekit_img_accordion_btn_bg_color_group_color\":\"#FFFFFF\",\"ekit_img_accordion_btn_border_group_color\":\"#251AFF\",\"ekit_img_accordion_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"globals\\/typography?id=accent\",\"ekit_img_accordion_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_img_accordion_btn_text_color\":\"globals\\/colors?id=accent\",\"ekit_img_accordion_btn_bg_color_group_color\":\"globals\\/colors?id=primary\",\"ekit_img_accordion_btn_border_group_color\":\"globals\\/colors?id=accent\",\"action_btn_bg\":\"\",\"ekit_img_accordion_pup_up_icon_color\":\"\"},\"items_style_mobile\":\"vertical\"},\"elements\":[],\"widgetType\":\"elementskit-image-accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"784a6d2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"3c86c578\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"88239b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e920a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4df81f9d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"b8ea96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"123f4089\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e391aa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"43264649\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24123b02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"6923b48b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5c844be6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fd2ec9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f8be2c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"462ceaf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"712d9d90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"6d22469e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"77c2e5be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"204b7f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(858,155,'_elementor_page_assets','a:1:{s:6:\"styles\";a:15:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";}}'),(859,160,'_edit_lock','1679033744:1'),(860,160,'_wp_page_template','elementor_header_footer'),(861,160,'_elementor_edit_mode','builder'),(862,160,'_elementor_template_type','wp-page'),(863,160,'_elementor_version','3.11.5'),(864,160,'_elementor_pro_version','3.11.6'),(866,74,'ekit_post_views_count','1'),(867,162,'_wp_page_template','elementor_header_footer'),(868,162,'_elementor_edit_mode','builder'),(869,162,'_elementor_template_type','wp-page'),(870,162,'_elementor_version','3.11.5'),(871,162,'_elementor_pro_version','3.11.6'),(872,163,'_wp_page_template','elementor_header_footer'),(873,163,'_elementor_edit_mode','builder'),(874,163,'_elementor_template_type','wp-page'),(875,163,'_elementor_version','3.11.5'),(876,163,'_elementor_pro_version','3.11.6'),(877,160,'_elementor_data','[{\"id\":\"7a5d168b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":75,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/developers-working-in-masks-F97S4DR_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43dc9ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e565713\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR SERVICES\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a0b3ed5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"369e4b42\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"175af444\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT CAN WE OFFER FOR YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"126f42d8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5cad3036\",\"elType\":\"widget\",\"settings\":{\"title\":\"our best service\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22f979e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d08ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6405a6a1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-smart\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7783dbab\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEVELOPMENT\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7496a023\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4411e15a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"79a62041\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"165664ba\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Design-3\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"40504e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANALYSIS\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18bd1d1\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"294968e6\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1c54c595\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"6fa6ec2f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-flower\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1d68e414\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18aa46ec\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"649d9f27\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23303545\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":65,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"00\",\"isLinked\":false},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":-390,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11815296\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"#\",\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#251AFF\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"__globals__\":{\"ekit_video_popup_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=accent\"},\"ekit_video_popup_btn_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_delay\":400,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"313083c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"ee62fc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56174f54\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"32133705\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3704161b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis.\\u00a0<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b6d700d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Creative Project 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"0fc8b67\"},{\"text\":\"Digital project planning and resourcing\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"ff9e4ef\"},{\"text\":\"Marketing Campaign\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"e567e1b\"},{\"text\":\"Product Consultant 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"b184e13\"},{\"text\":\"Head of Design and Marketing Department\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"819c19a\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37051174\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d621d23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a48d921\",\"elType\":\"widget\",\"settings\":{\"title\":\"CHOOSE YOUR PLANS\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75f1caad\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"17f4b135\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"779bbe89\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"381a1092\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"border_hover_border\":\"solid\",\"border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2a506c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"BASIC\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4796a4ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$119<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c77dea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1de99c21\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24152a5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand &amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e00e2e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d6abf00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34f14891\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fdb67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fa360f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2b3f3d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"42fc2a56\",\"elType\":\"widget\",\"settings\":{\"title\":\"STANDARD\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d362b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$129<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\",\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68ca7a48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e1194cb\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e61cd9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand\\u00a0&amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60f3df3e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"30db689a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5705f3c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cfafec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16c6ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"76f8c32e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"border_hover_border\":\"solid\",\"border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5cee141f\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXPERT\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4460f381\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$139<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"25aaf27e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"455e5c08\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3869bfa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand\\u00a0&amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"50ce7694\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e26698f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e8f85c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20afbcda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e4dd653\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3318d9b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce5c936\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff52f41\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b1ee495\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":76,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-2.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"26779829\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7dc29041\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3e2f08f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"LET\'S WORK TOGETHER \",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31ea9d1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6bddd5f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d8014d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5bf18837\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"10f2fdeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"UNIQUE DIGITAL EXPERIENCES\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c60362c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"49eef16a\",\"elType\":\"widget\",\"settings\":{\"title\":\"our special skills\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41d7448d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3693749\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"UI\\/UX\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":85},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"59713afa\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"BRANDING\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"44a24723\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"ILLUSTRATION\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":95},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"5f295cd9\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"3D PROJECT\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":95},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"}],\"isInner\":false},{\"id\":\"28b42541\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"align\":\"flex-end\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"7efddd69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5315a722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-185\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-123\",\"right\":\"218\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"100\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(878,164,'_wp_page_template','elementor_header_footer'),(879,164,'_elementor_edit_mode','builder'),(880,164,'_elementor_template_type','wp-page'),(881,164,'_elementor_version','3.11.5'),(882,164,'_elementor_pro_version','3.11.6'),(883,164,'_elementor_data','[{\"id\":\"7a5d168b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":75,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/developers-working-in-masks-F97S4DR_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43dc9ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e565713\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR SERVICES\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a0b3ed5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"369e4b42\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"175af444\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT CAN WE OFFER FOR YOU\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"126f42d8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5cad3036\",\"elType\":\"widget\",\"settings\":{\"title\":\"our best service\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22f979e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d08ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6405a6a1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-smart\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7783dbab\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEVELOPMENT\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7496a023\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4411e15a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"79a62041\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"165664ba\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Design-3\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"40504e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANALYSIS\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18bd1d1\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"294968e6\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1c54c595\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"6fa6ec2f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-flower\",\"library\":\"ekiticons\"},\"primary_color\":\"#00000040\",\"size\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-210\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-50\",\"bottom\":\"-60\",\"left\":\"55\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1d68e414\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18aa46ec\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"649d9f27\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"15\",\"bottom\":\"17\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23303545\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":65,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"00\",\"isLinked\":false},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":-390,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11815296\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"#\",\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#251AFF\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"__globals__\":{\"ekit_video_popup_btn_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_video_popup_btn_glow_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"globals\\/colors?id=accent\"},\"ekit_video_popup_btn_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_delay\":400,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"313083c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"ee62fc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56174f54\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"32133705\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3704161b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis.\\u00a0<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b6d700d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Creative Project 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"0fc8b67\"},{\"text\":\"Digital project planning and resourcing\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"ff9e4ef\"},{\"text\":\"Marketing Campaign\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"e567e1b\"},{\"text\":\"Product Consultant 2021\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"b184e13\"},{\"text\":\"Head of Design and Marketing Department\",\"selected_icon\":{\"value\":\"icon icon-check\",\"library\":\"ekiticons\"},\"_id\":\"819c19a\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37051174\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d621d23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a48d921\",\"elType\":\"widget\",\"settings\":{\"title\":\"CHOOSE YOUR PLANS\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75f1caad\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"17f4b135\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"779bbe89\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"381a1092\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"border_hover_border\":\"solid\",\"border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2a506c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"BASIC\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4796a4ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$119<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c77dea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1de99c21\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24152a5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand &amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e00e2e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d6abf00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34f14891\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fdb67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fa360f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2b3f3d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"42fc2a56\",\"elType\":\"widget\",\"settings\":{\"title\":\"STANDARD\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d362b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$129<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\",\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68ca7a48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e1194cb\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e61cd9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand\\u00a0&amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60f3df3e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"30db689a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5705f3c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cfafec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#A8A8A8\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16c6ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"76f8c32e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E4E4E4\",\"border_hover_border\":\"solid\",\"border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"50\",\"left\":\"150\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=accent\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5cee141f\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXPERT\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4460f381\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$139<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=03de200\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"25aaf27e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>per month<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"455e5c08\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3869bfa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Brand\\u00a0&amp; Identity<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"50ce7694\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Powerful\\u00a0Customization<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e26698f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Individual\\u00a0Solutions<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e8f85c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Information\\u00a0Technology<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20afbcda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Unlimited Domains\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e4dd653\",\"elType\":\"widget\",\"settings\":{\"text\":\"BUY NOW\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3318d9b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce5c936\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff52f41\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b1ee495\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":76,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-2.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"26779829\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7dc29041\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3e2f08f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"LET\'S WORK TOGETHER \",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31ea9d1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6bddd5f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d8014d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5bf18837\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"10f2fdeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"UNIQUE DIGITAL EXPERIENCES\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c60362c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"49eef16a\",\"elType\":\"widget\",\"settings\":{\"title\":\"our special skills\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41d7448d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3693749\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"UI\\/UX\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":85},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"59713afa\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"BRANDING\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"44a24723\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"ILLUSTRATION\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":95},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"5f295cd9\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"3D PROJECT\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_title_typography_typography\":\"\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=text\",\"ekit_progressbar_percent_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_progressbar_track_color_color\":\"globals\\/colors?id=accent\"},\"ekit_progressbar_percentage\":95},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"}],\"isInner\":false},{\"id\":\"28b42541\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"align\":\"flex-end\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"7efddd69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png\"},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5315a722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-185\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-123\",\"right\":\"218\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"100\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(884,160,'_elementor_page_assets','a:1:{s:6:\"styles\";a:19:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";}}'),(885,165,'_edit_lock','1679033825:1'),(886,165,'_wp_page_template','elementor_header_footer'),(887,165,'_elementor_edit_mode','builder'),(888,165,'_elementor_template_type','wp-page'),(889,165,'_elementor_version','3.11.5'),(890,165,'_elementor_pro_version','3.11.6'),(891,167,'_wp_page_template','elementor_header_footer'),(892,167,'_elementor_edit_mode','builder'),(893,167,'_elementor_template_type','wp-page'),(894,167,'_elementor_version','3.11.5'),(895,167,'_elementor_pro_version','3.11.6'),(896,168,'_wp_page_template','elementor_header_footer'),(897,168,'_elementor_edit_mode','builder'),(898,168,'_elementor_template_type','wp-page'),(899,168,'_elementor_version','3.11.5'),(900,168,'_elementor_pro_version','3.11.6'),(901,165,'_elementor_data','[{\"id\":\"74828deb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":109,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e420b19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"65c4fc66\",\"elType\":\"widget\",\"settings\":{\"title\":\"BLOG\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"feb18d0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79d73b81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"54304560\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26834885\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d526558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"53b21433\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33926644\",\"elType\":\"widget\",\"settings\":{\"title\":\"LINDA STRIS\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-7\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69da46d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life is like a boat<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c0b1cc9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6afa8041\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon_text\",\"placeholder\":\"   Search...\",\"input_placeholder_color\":\"#CBCBCB\",\"input_background_color\":\"#F8F8F8\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_background_color\":\"\",\"input_placeholder_color\":\"\",\"button_background_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=accent\",\"hover_close_icon_text\":\"globals\\/colors?id=accent\"},\"button_background_color\":\"#251AFF\",\"text_color\":\"#251AFF\",\"hover_close_icon_text\":\"#251AFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"},{\"id\":\"5abcad09\",\"elType\":\"widget\",\"settings\":{\"title\":\"CATEGORIES\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5efeecf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"GALLERY\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54f1ebd9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f741909\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bfa7559\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":110,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/walling-52H5Nfi5WiE-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e29b615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"791974e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e7bcaa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77768040\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1546510\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f3d211c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eaff4b3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f84509a\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEED A DESIGN?\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a544264\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>let\'s get to work<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a079f09\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#251AFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#251AFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(902,169,'_wp_page_template','elementor_header_footer'),(903,169,'_elementor_edit_mode','builder'),(904,169,'_elementor_template_type','wp-page'),(905,169,'_elementor_version','3.11.5'),(906,169,'_elementor_pro_version','3.11.6'),(907,169,'_elementor_data','[{\"id\":\"74828deb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":109,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e420b19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"65c4fc66\",\"elType\":\"widget\",\"settings\":{\"title\":\"BLOG\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=03de200\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"feb18d0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79d73b81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"54304560\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26834885\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d526558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"53b21433\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33926644\",\"elType\":\"widget\",\"settings\":{\"title\":\"LINDA STRIS\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-7\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69da46d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Life is like a boat<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=a41d1b1\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c0b1cc9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6afa8041\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon_text\",\"placeholder\":\"   Search...\",\"input_placeholder_color\":\"#CBCBCB\",\"input_background_color\":\"#F8F8F8\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_background_color\":\"\",\"input_placeholder_color\":\"\",\"button_background_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=accent\",\"hover_close_icon_text\":\"globals\\/colors?id=accent\"},\"button_background_color\":\"#251AFF\",\"text_color\":\"#251AFF\",\"hover_close_icon_text\":\"#251AFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"},{\"id\":\"5abcad09\",\"elType\":\"widget\",\"settings\":{\"title\":\"CATEGORIES\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5efeecf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"GALLERY\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54f1ebd9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f741909\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bfa7559\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":110,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/walling-52H5Nfi5WiE-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e29b615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"791974e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e7bcaa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":62,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77768040\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1546510\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f3d211c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eaff4b3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f84509a\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEED A DESIGN?\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a544264\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>let\'s get to work<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=3ac5d19\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a079f09\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#251AFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#251AFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(908,165,'_elementor_page_assets','a:0:{}'),(909,170,'_menu_item_type','post_type'),(910,170,'_menu_item_menu_item_parent','0'),(911,170,'_menu_item_object_id','144'),(912,170,'_menu_item_object','page'),(913,170,'_menu_item_target',''),(914,170,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(915,170,'_menu_item_xfn',''),(916,170,'_menu_item_url',''),(917,170,'_menu_item_orphaned','1679034093'),(918,171,'_menu_item_type','post_type'),(919,171,'_menu_item_menu_item_parent','0'),(920,171,'_menu_item_object_id','165'),(921,171,'_menu_item_object','page'),(922,171,'_menu_item_target',''),(923,171,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(924,171,'_menu_item_xfn',''),(925,171,'_menu_item_url',''),(926,171,'_menu_item_orphaned','1679034107'),(927,172,'_menu_item_type','post_type'),(928,172,'_menu_item_menu_item_parent','0'),(929,172,'_menu_item_object_id','160'),(930,172,'_menu_item_object','page'),(931,172,'_menu_item_target',''),(932,172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(933,172,'_menu_item_xfn',''),(934,172,'_menu_item_url',''),(935,172,'_menu_item_orphaned','1679034107'),(936,173,'_menu_item_type','post_type'),(937,173,'_menu_item_menu_item_parent','0'),(938,173,'_menu_item_object_id','155'),(939,173,'_menu_item_object','page'),(940,173,'_menu_item_target',''),(941,173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(942,173,'_menu_item_xfn',''),(943,173,'_menu_item_url',''),(944,173,'_menu_item_orphaned','1679034107'),(945,174,'_menu_item_type','post_type'),(946,174,'_menu_item_menu_item_parent','0'),(947,174,'_menu_item_object_id','150'),(948,174,'_menu_item_object','page'),(949,174,'_menu_item_target',''),(950,174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(951,174,'_menu_item_xfn',''),(952,174,'_menu_item_url',''),(953,174,'_menu_item_orphaned','1679034107'),(954,175,'_menu_item_type','custom'),(955,175,'_menu_item_menu_item_parent','0'),(956,175,'_menu_item_object_id','175'),(957,175,'_menu_item_object','custom'),(958,175,'_menu_item_target',''),(959,175,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(960,175,'_menu_item_xfn',''),(961,175,'_menu_item_url','https://www.whatthehell.co/'),(963,176,'_menu_item_type','post_type'),(964,176,'_menu_item_menu_item_parent','0'),(965,176,'_menu_item_object_id','165'),(966,176,'_menu_item_object','page'),(967,176,'_menu_item_target',''),(968,176,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(969,176,'_menu_item_xfn',''),(970,176,'_menu_item_url',''),(972,177,'_menu_item_type','post_type'),(973,177,'_menu_item_menu_item_parent','175'),(974,177,'_menu_item_object_id','160'),(975,177,'_menu_item_object','page'),(976,177,'_menu_item_target',''),(977,177,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(978,177,'_menu_item_xfn',''),(979,177,'_menu_item_url',''),(981,178,'_menu_item_type','post_type'),(982,178,'_menu_item_menu_item_parent','175'),(983,178,'_menu_item_object_id','155'),(984,178,'_menu_item_object','page'),(985,178,'_menu_item_target',''),(986,178,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(987,178,'_menu_item_xfn',''),(988,178,'_menu_item_url',''),(990,179,'_menu_item_type','post_type'),(991,179,'_menu_item_menu_item_parent','175'),(992,179,'_menu_item_object_id','150'),(993,179,'_menu_item_object','page'),(994,179,'_menu_item_target',''),(995,179,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(996,179,'_menu_item_xfn',''),(997,179,'_menu_item_url',''),(999,180,'_menu_item_type','post_type'),(1000,180,'_menu_item_menu_item_parent','0'),(1001,180,'_menu_item_object_id','144'),(1002,180,'_menu_item_object','page'),(1003,180,'_menu_item_target',''),(1004,180,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1005,180,'_menu_item_xfn',''),(1006,180,'_menu_item_url',''),(1010,181,'_wp_page_template','elementor_header_footer'),(1011,181,'_elementor_edit_mode','builder'),(1012,181,'_elementor_template_type','wp-post'),(1013,181,'_elementor_version','3.11.5'),(1014,181,'_elementor_pro_version','3.11.6'),(1015,181,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1016,181,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1018,182,'_wp_page_template','elementor_header_footer'),(1019,182,'_elementor_edit_mode','builder'),(1020,182,'_elementor_template_type','wp-post'),(1021,182,'_elementor_version','3.11.5'),(1022,182,'_elementor_pro_version','3.11.6'),(1023,182,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1024,182,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1026,183,'_wp_page_template','elementor_header_footer'),(1027,183,'_elementor_edit_mode','builder'),(1028,183,'_elementor_template_type','wp-post'),(1029,183,'_elementor_version','3.11.5'),(1030,183,'_elementor_pro_version','3.11.6'),(1031,183,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1032,183,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1038,184,'_wp_page_template','elementor_header_footer'),(1039,184,'_elementor_edit_mode','builder'),(1040,184,'_elementor_template_type','wp-post'),(1041,184,'_elementor_version','3.11.5'),(1042,184,'_elementor_pro_version','3.11.6'),(1043,184,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1044,184,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1046,185,'_wp_page_template','elementor_header_footer'),(1047,185,'_elementor_edit_mode','builder'),(1048,185,'_elementor_template_type','wp-post'),(1049,185,'_elementor_version','3.11.5'),(1050,185,'_elementor_pro_version','3.11.6'),(1051,185,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1052,185,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1054,186,'_wp_page_template','elementor_header_footer'),(1055,186,'_elementor_edit_mode','builder'),(1056,186,'_elementor_template_type','wp-post'),(1057,186,'_elementor_version','3.11.5'),(1058,186,'_elementor_pro_version','3.11.6'),(1059,186,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1060,186,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1063,187,'_wp_page_template','elementor_header_footer'),(1064,187,'_elementor_edit_mode','builder'),(1065,187,'_elementor_template_type','wp-post'),(1066,187,'_elementor_version','3.11.5'),(1067,187,'_elementor_pro_version','3.11.6'),(1068,187,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"275\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1069,187,'_elementor_page_assets','a:0:{}'),(1071,188,'_wp_page_template','elementor_header_footer'),(1072,188,'_elementor_edit_mode','builder'),(1073,188,'_elementor_template_type','wp-post'),(1074,188,'_elementor_version','3.11.5'),(1075,188,'_elementor_pro_version','3.11.6'),(1076,188,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"275\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1077,188,'_elementor_page_assets','a:0:{}'),(1079,189,'_wp_page_template','elementor_header_footer'),(1080,189,'_elementor_edit_mode','builder'),(1081,189,'_elementor_template_type','wp-post'),(1082,189,'_elementor_version','3.11.5'),(1083,189,'_elementor_pro_version','3.11.6'),(1084,189,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"275\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1085,189,'_elementor_page_assets','a:0:{}'),(1096,191,'_wp_attached_file','2023/03/Whatthehell-digital-agency.webp'),(1097,191,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:941;s:6:\"height\";i:105;s:4:\"file\";s:39:\"2023/03/Whatthehell-digital-agency.webp\";s:8:\"filesize\";i:7466;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Whatthehell-digital-agency-300x33.webp\";s:5:\"width\";i:300;s:6:\"height\";i:33;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3366;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Whatthehell-digital-agency-150x105.webp\";s:5:\"width\";i:150;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:888;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Whatthehell-digital-agency-768x86.webp\";s:5:\"width\";i:768;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9222;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1098,191,'_wp_attachment_image_alt','What the hell-digital agency'),(1099,192,'_wp_page_template','elementor_header_footer'),(1100,192,'_elementor_edit_mode','builder'),(1101,192,'_elementor_template_type','wp-post'),(1102,192,'_elementor_version','3.11.5'),(1103,192,'_elementor_pro_version','3.11.6'),(1104,192,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1105,192,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1106,193,'_wp_page_template','elementor_header_footer'),(1107,193,'_elementor_edit_mode','builder'),(1108,193,'_elementor_template_type','wp-post'),(1109,193,'_elementor_version','3.11.5'),(1110,193,'_elementor_pro_version','3.11.6'),(1111,193,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1112,193,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1113,194,'_wp_page_template','elementor_header_footer'),(1114,194,'_elementor_edit_mode','builder'),(1115,194,'_elementor_template_type','wp-post'),(1116,194,'_elementor_version','3.11.5'),(1117,194,'_elementor_pro_version','3.11.6'),(1118,194,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1119,194,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1121,195,'_wp_page_template','elementor_header_footer'),(1122,195,'_elementor_edit_mode','builder'),(1123,195,'_elementor_template_type','wp-post'),(1124,195,'_elementor_version','3.11.5'),(1125,195,'_elementor_pro_version','3.11.6'),(1126,195,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1127,195,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1129,196,'_wp_page_template','elementor_header_footer'),(1130,196,'_elementor_edit_mode','builder'),(1131,196,'_elementor_template_type','wp-post'),(1132,196,'_elementor_version','3.11.5'),(1133,196,'_elementor_pro_version','3.11.6'),(1134,196,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1135,196,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1137,197,'_wp_page_template','elementor_header_footer'),(1138,197,'_elementor_edit_mode','builder'),(1139,197,'_elementor_template_type','wp-post'),(1140,197,'_elementor_version','3.11.5'),(1141,197,'_elementor_pro_version','3.11.6'),(1142,197,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1143,197,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1146,198,'_wp_page_template','elementor_header_footer'),(1147,198,'_elementor_edit_mode','builder'),(1148,198,'_elementor_template_type','wp-post'),(1149,198,'_elementor_version','3.11.5'),(1150,198,'_elementor_pro_version','3.11.6'),(1151,198,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1152,198,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1154,199,'_wp_page_template','elementor_header_footer'),(1155,199,'_elementor_edit_mode','builder'),(1156,199,'_elementor_template_type','wp-post'),(1157,199,'_elementor_version','3.11.5'),(1158,199,'_elementor_pro_version','3.11.6'),(1159,199,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"900\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1160,199,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1162,200,'_wp_page_template','elementor_header_footer'),(1163,200,'_elementor_edit_mode','builder'),(1164,200,'_elementor_template_type','wp-post'),(1165,200,'_elementor_version','3.11.5'),(1166,200,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (1167,200,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1168,200,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1171,201,'_wp_page_template','elementor_header_footer'),(1172,201,'_elementor_edit_mode','builder'),(1173,201,'_elementor_template_type','wp-post'),(1174,201,'_elementor_version','3.11.5'),(1175,201,'_elementor_pro_version','3.11.6'),(1176,201,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"275\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1177,201,'_elementor_page_assets','a:0:{}'),(1179,202,'_wp_page_template','elementor_header_footer'),(1180,202,'_elementor_edit_mode','builder'),(1181,202,'_elementor_template_type','wp-post'),(1182,202,'_elementor_version','3.11.5'),(1183,202,'_elementor_pro_version','3.11.6'),(1184,202,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"275\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":102,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Asset-2_logo.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1185,202,'_elementor_page_assets','a:0:{}'),(1187,203,'_wp_page_template','elementor_header_footer'),(1188,203,'_elementor_edit_mode','builder'),(1189,203,'_elementor_template_type','wp-post'),(1190,203,'_elementor_version','3.11.5'),(1191,203,'_elementor_pro_version','3.11.6'),(1192,203,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1193,203,'_elementor_page_assets','a:0:{}'),(1204,205,'_wp_attached_file','2023/03/placeholder-1-1.png'),(1205,205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2023/03/placeholder-1-1.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-1-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-1-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-1-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1206,205,'_elementor_source_image_hash','4f1fb1829820432ec81496de609e7e98c7a9e4a6'),(1207,206,'_wp_attached_file','2023/03/team_6.jpg'),(1208,206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2023/03/team_6.jpg\";s:8:\"filesize\";i:25994;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"team_6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"team_6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1209,206,'_elementor_source_image_hash','e814f3b44bd9dc14dd8dc3eae0e3a518d584dd85'),(1210,207,'_wp_attached_file','2023/03/client-logo-2.png'),(1211,207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:97;s:6:\"height\";i:50;s:4:\"file\";s:25:\"2023/03/client-logo-2.png\";s:8:\"filesize\";i:899;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1212,207,'_elementor_source_image_hash','c155aed64fa2ead67259db1d171fbed63d02d31d'),(1213,208,'_wp_attached_file','2023/03/client-logo-white.png'),(1214,208,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:88;s:6:\"height\";i:50;s:4:\"file\";s:29:\"2023/03/client-logo-white.png\";s:8:\"filesize\";i:939;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1215,208,'_elementor_source_image_hash','f20e4764e51e7e240e69e5501720d1fccf7c0a94'),(1216,209,'_wp_page_template','elementor_header_footer'),(1217,209,'_elementor_edit_mode','builder'),(1218,209,'_elementor_template_type','wp-page'),(1219,209,'_elementor_version','3.11.5'),(1220,209,'_elementor_pro_version','3.11.6'),(1221,209,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1222,209,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1223,210,'_wp_page_template','elementor_header_footer'),(1224,210,'_elementor_edit_mode','builder'),(1225,210,'_elementor_template_type','wp-page'),(1226,210,'_elementor_version','3.11.5'),(1227,210,'_elementor_pro_version','3.11.6'),(1228,210,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1229,210,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1230,211,'_wp_page_template','elementor_header_footer'),(1231,211,'_elementor_edit_mode','builder'),(1232,211,'_elementor_template_type','wp-page'),(1233,211,'_elementor_version','3.11.5'),(1234,211,'_elementor_pro_version','3.11.6'),(1235,211,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1236,211,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1246,213,'_wp_page_template','elementor_header_footer'),(1247,213,'_elementor_edit_mode','builder'),(1248,213,'_elementor_template_type','wp-page'),(1249,213,'_elementor_version','3.11.5'),(1250,213,'_elementor_pro_version','3.11.6'),(1251,213,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1252,213,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1253,214,'_wp_page_template','elementor_header_footer'),(1254,214,'_elementor_edit_mode','builder'),(1255,214,'_elementor_template_type','wp-page'),(1256,214,'_elementor_version','3.11.5'),(1257,214,'_elementor_pro_version','3.11.6'),(1258,214,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1259,214,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1260,215,'_wp_page_template','elementor_header_footer'),(1261,215,'_elementor_edit_mode','builder'),(1262,215,'_elementor_template_type','wp-page'),(1263,215,'_elementor_version','3.11.5'),(1264,215,'_elementor_pro_version','3.11.6'),(1265,215,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1266,215,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1268,216,'_wp_attached_file','2023/03/placeholder-22.png'),(1269,216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/03/placeholder-22.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-22-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-22-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-22-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-22-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1270,216,'_elementor_source_image_hash','29cd246f2070302b114b8e01560fe11a835e31df'),(1271,217,'_wp_attached_file','2023/03/placeholder-23.png'),(1272,217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/03/placeholder-23.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-23-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-23-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-23-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-23-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1273,217,'_elementor_source_image_hash','d0f124dda62043a0de1f5630a1de6e12af7bfd99'),(1274,218,'_wp_attached_file','2023/03/placeholder-24.png'),(1275,218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/03/placeholder-24.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-24-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-24-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-24-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-24-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1276,218,'_elementor_source_image_hash','32e072e6bb7b6b39a0f5b871d87da73efdda31e9'),(1277,219,'_wp_attached_file','2023/03/placeholder-25.png'),(1278,219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/03/placeholder-25.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-25-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-25-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-25-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-25-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1279,219,'_elementor_source_image_hash','f3ef012047968d001309bf925e13f9bd36d1cdaf'),(1280,220,'_wp_attached_file','2023/03/placeholder-26.png'),(1281,220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/03/placeholder-26.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-26-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-26-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-26-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-26-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1282,220,'_elementor_source_image_hash','9bc5d559468ba01b129e4147f3e6fd554bebd81b'),(1283,221,'_wp_attached_file','2023/03/placeholder-27.png'),(1284,221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/03/placeholder-27.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-27-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-27-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-27-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-27-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1285,221,'_elementor_source_image_hash','bd99b86be3e7ded19eba06202a79aea451652b3c'),(1286,222,'_wp_attached_file','2023/03/placeholder-28.png'),(1287,222,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/03/placeholder-28.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-28-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-28-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-28-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-28-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1288,222,'_elementor_source_image_hash','acec74b792c0cbe45f6fd3a0639582347167621d'),(1289,223,'_wp_attached_file','2023/03/placeholder-29.png'),(1290,223,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/03/placeholder-29.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-29-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-29-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-29-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-29-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1291,223,'_elementor_source_image_hash','6487c9239d3a7d5490f388edb7313c4fa8ee8009'),(1292,224,'_wp_attached_file','2023/03/placeholder-30.png'),(1293,224,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/03/placeholder-30.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-30-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-30-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-30-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-30-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1294,224,'_elementor_source_image_hash','97c22e43ffa21919ba798ff1551b57a6fbf026cd'),(1303,226,'_wp_attached_file','2023/03/What-The-Hell-Digital-Agency.webp'),(1304,226,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:41:\"2023/03/What-The-Hell-Digital-Agency.webp\";s:8:\"filesize\";i:79484;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"What-The-Hell-Digital-Agency-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5686;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"What-The-Hell-Digital-Agency-1024x768.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:40254;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"What-The-Hell-Digital-Agency-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2906;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"What-The-Hell-Digital-Agency-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23496;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"What-The-Hell-Digital-Agency-1536x1152.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:88270;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1305,226,'_wp_attachment_image_alt','What The Hell - Digital Agency'),(1306,227,'_wp_attached_file','2023/03/WTH-Best-Digital-Marketing-Agency.webp'),(1307,227,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:481;s:4:\"file\";s:46:\"2023/03/WTH-Best-Digital-Marketing-Agency.webp\";s:8:\"filesize\";i:40432;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"WTH-Best-Digital-Marketing-Agency-300x120.webp\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9370;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"WTH-Best-Digital-Marketing-Agency-1024x410.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:44460;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"WTH-Best-Digital-Marketing-Agency-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5858;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"WTH-Best-Digital-Marketing-Agency-768x308.webp\";s:5:\"width\";i:768;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31714;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1308,228,'_wp_attached_file','2023/03/WTH-Digital-Marketing-Agency.webp'),(1309,228,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:481;s:4:\"file\";s:41:\"2023/03/WTH-Digital-Marketing-Agency.webp\";s:8:\"filesize\";i:21572;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"WTH-Digital-Marketing-Agency-300x120.webp\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6242;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"WTH-Digital-Marketing-Agency-1024x410.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23604;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"WTH-Digital-Marketing-Agency-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4550;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"WTH-Digital-Marketing-Agency-768x308.webp\";s:5:\"width\";i:768;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17590;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1310,228,'_wp_attachment_image_alt','WTH - Digital Marketing Agency'),(1311,227,'_wp_attachment_image_alt','WTH - Best Digital Marketing Agency'),(1312,229,'_wp_attached_file','2023/03/WTH-Best-Advertising-Agency.webp'),(1313,229,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:476;s:4:\"file\";s:40:\"2023/03/WTH-Best-Advertising-Agency.webp\";s:8:\"filesize\";i:24498;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"WTH-Best-Advertising-Agency-300x119.webp\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6620;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"WTH-Best-Advertising-Agency-1024x406.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:28268;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"WTH-Best-Advertising-Agency-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5146;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"WTH-Best-Advertising-Agency-768x305.webp\";s:5:\"width\";i:768;s:6:\"height\";i:305;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20252;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1314,230,'_wp_attached_file','2023/03/WTH-Advertising-Agency.webp'),(1315,230,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:476;s:4:\"file\";s:35:\"2023/03/WTH-Advertising-Agency.webp\";s:8:\"filesize\";i:14174;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"WTH-Advertising-Agency-300x119.webp\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4370;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"WTH-Advertising-Agency-1024x406.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16386;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"WTH-Advertising-Agency-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3658;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"WTH-Advertising-Agency-768x305.webp\";s:5:\"width\";i:768;s:6:\"height\";i:305;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11858;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1316,230,'_wp_attachment_image_alt','WTH - Advertising Agency'),(1317,229,'_wp_attachment_image_alt','WTH - Best Advertising Agency'),(1319,231,'_wp_attached_file','2023/03/WTH-Digital-Advertising-Agency-2.webp'),(1320,231,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:45:\"2023/03/WTH-Digital-Advertising-Agency-2.webp\";s:8:\"filesize\";i:37280;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"WTH-Digital-Advertising-Agency-2-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13414;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"WTH-Digital-Advertising-Agency-2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6712;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"WTH-Digital-Advertising-Agency-2-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:38986;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1321,232,'_wp_attached_file','2023/03/WTH-Digital-Advertising-Agency-1.webp'),(1322,232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:45:\"2023/03/WTH-Digital-Advertising-Agency-1.webp\";s:8:\"filesize\";i:27960;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"WTH-Digital-Advertising-Agency-1-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9728;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"WTH-Digital-Advertising-Agency-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4848;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"WTH-Digital-Advertising-Agency-1-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:28412;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1323,233,'_wp_attached_file','2023/03/WTH-Digital-Advertising-Agency.webp'),(1324,233,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:43:\"2023/03/WTH-Digital-Advertising-Agency.webp\";s:8:\"filesize\";i:32588;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"WTH-Digital-Advertising-Agency-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11874;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"WTH-Digital-Advertising-Agency-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6042;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"WTH-Digital-Advertising-Agency-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33718;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1325,233,'_wp_attachment_image_alt','WTH - Digital Advertising Agency'),(1326,232,'_wp_attachment_image_alt','WTH - Digital Advertising Agency-1'),(1327,231,'_wp_attachment_image_alt','WTH - Digital Advertising Agency - 2'),(1328,234,'_wp_attached_file','2023/03/WTH-Team.webp'),(1329,234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:21:\"2023/03/WTH-Team.webp\";s:8:\"filesize\";i:84106;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"WTH-Team-225x300.webp\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8062;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"WTH-Team-768x1024.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:59804;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"WTH-Team-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3756;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"WTH-Team-768x1024.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:59804;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"WTH-Team-1152x1536.webp\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:109838;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1330,234,'_wp_attachment_image_alt','WTH - Team'),(1331,235,'_wp_attached_file','2023/03/WTH-Team-1.webp'),(1332,235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:23:\"2023/03/WTH-Team-1.webp\";s:8:\"filesize\";i:33928;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"WTH-Team-1-225x300.webp\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5352;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"WTH-Team-1-768x1024.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"WTH-Team-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2568;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"WTH-Team-1-768x1024.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27302;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"WTH-Team-1-1152x1536.webp\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:46858;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1333,235,'_wp_attachment_image_alt',''),(1334,236,'_wp_attached_file','2023/03/WTH-Team-2.webp'),(1335,236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:23:\"2023/03/WTH-Team-2.webp\";s:8:\"filesize\";i:33414;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"WTH-Team-2-225x300.webp\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5736;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"WTH-Team-2-768x1024.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29160;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"WTH-Team-2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2900;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"WTH-Team-2-768x1024.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29160;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"WTH-Team-2-1152x1536.webp\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:46558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1336,236,'_wp_attachment_image_alt','WTH - Team 2'),(1337,237,'_wp_attached_file','2023/03/WTH-Team-3.webp'),(1338,237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:23:\"2023/03/WTH-Team-3.webp\";s:8:\"filesize\";i:45938;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"WTH-Team-3-225x300.webp\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6484;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"WTH-Team-3-768x1024.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37146;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"WTH-Team-3-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3210;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"WTH-Team-3-768x1024.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37146;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"WTH-Team-3-1152x1536.webp\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:64486;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1339,237,'_wp_attachment_image_alt','WTH - Team 3'),(1341,238,'_wp_page_template','elementor_header_footer'),(1342,238,'_elementor_edit_mode','builder'),(1343,238,'_elementor_template_type','wp-page'),(1344,238,'_elementor_version','3.11.5'),(1345,238,'_elementor_pro_version','3.11.6'),(1346,238,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1347,238,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1349,239,'_wp_page_template','elementor_header_footer'),(1350,239,'_elementor_edit_mode','builder'),(1351,239,'_elementor_template_type','wp-page'),(1352,239,'_elementor_version','3.11.5'),(1353,239,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (1354,239,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":14,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":16,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run2.png\"},{\"id\":17,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/run1.png\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":18,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da2.png\"},{\"id\":19,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/da1.png\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":35,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_2.png\"},{\"id\":36,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_4.png\"},{\"id\":37,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/rundalogo_3.png\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":51,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/young-man-with-interesting-style-U5YJBRD_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":52,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":53,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":54,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/man-with-purple-light-portrait-LQY3DEA.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1355,239,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1357,240,'_wp_page_template','elementor_header_footer'),(1358,240,'_elementor_edit_mode','builder'),(1359,240,'_elementor_template_type','wp-page'),(1360,240,'_elementor_version','3.11.5'),(1361,240,'_elementor_pro_version','3.11.6'),(1362,240,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":228,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Marketing-Agency.webp\"},{\"id\":227,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Digital-Marketing-Agency.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":230,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Advertising-Agency.webp\"},{\"id\":229,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Advertising-Agency.webp\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":233,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Advertising-Agency.webp\"},{\"id\":232,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Advertising-Agency-1.webp\"},{\"id\":231,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Advertising-Agency-2.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":234,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team.webp\",\"alt\":\"WTH - Team\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":235,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-1.webp\",\"alt\":\"WTH - Team 1\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":236,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-2.webp\",\"alt\":\"WTH - Team 2\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":237,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-3.webp\",\"alt\":\"WTH - Team 3\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1363,240,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1366,241,'_wp_attached_file','2023/03/WTH-2.webp'),(1367,241,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2023/03/WTH-2.webp\";s:8:\"filesize\";i:56118;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"WTH-2-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17676;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"WTH-2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8316;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"WTH-2-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:55736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1376,243,'_wp_attached_file','2023/03/WTH-1.webp'),(1377,243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2023/03/WTH-1.webp\";s:8:\"filesize\";i:54672;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"WTH-1-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18058;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"WTH-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8078;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"WTH-1-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:57462;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1379,244,'_wp_attached_file','2023/03/WTH-1-1.webp'),(1380,244,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2023/03/WTH-1-1.webp\";s:8:\"filesize\";i:49256;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"WTH-1-1-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16996;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"WTH-1-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8010;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"WTH-1-1-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:49930;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1381,245,'_wp_attached_file','2023/03/WTH-2-1.webp'),(1382,245,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2023/03/WTH-2-1.webp\";s:8:\"filesize\";i:33770;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"WTH-2-1-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"WTH-2-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5638;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"WTH-2-1-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35292;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1383,246,'_wp_attached_file','2023/03/WTH-4.webp'),(1384,246,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2023/03/WTH-4.webp\";s:8:\"filesize\";i:61184;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"WTH-4-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15024;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"WTH-4-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6480;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"WTH-4-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:55436;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1385,247,'_wp_attached_file','2023/03/WTH-3.webp'),(1386,247,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2023/03/WTH-3.webp\";s:8:\"filesize\";i:33536;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"WTH-3-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"WTH-3-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4920;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"WTH-3-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34086;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1387,248,'_wp_page_template','elementor_header_footer'),(1388,248,'_elementor_edit_mode','builder'),(1389,248,'_elementor_template_type','wp-page'),(1390,248,'_elementor_version','3.11.5'),(1391,248,'_elementor_pro_version','3.11.6'),(1392,248,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":228,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Marketing-Agency.webp\"},{\"id\":227,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Digital-Marketing-Agency.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":230,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Advertising-Agency.webp\"},{\"id\":229,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Advertising-Agency.webp\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":233,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Advertising-Agency.webp\"},{\"id\":232,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Advertising-Agency-1.webp\"},{\"id\":231,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Advertising-Agency-2.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":234,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team.webp\",\"alt\":\"WTH - Team\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":235,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-1.webp\",\"alt\":\"WTH - Team 1\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":236,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-2.webp\",\"alt\":\"WTH - Team 2\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":237,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-3.webp\",\"alt\":\"WTH - Team 3\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1393,248,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1394,249,'_wp_page_template','elementor_header_footer'),(1395,249,'_elementor_edit_mode','builder'),(1396,249,'_elementor_template_type','wp-page'),(1397,249,'_elementor_version','3.11.5'),(1398,249,'_elementor_pro_version','3.11.6'),(1399,249,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":228,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Marketing-Agency.webp\"},{\"id\":227,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Digital-Marketing-Agency.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":230,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Advertising-Agency.webp\"},{\"id\":229,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Advertising-Agency.webp\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":233,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Advertising-Agency.webp\"},{\"id\":232,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Advertising-Agency-1.webp\"},{\"id\":231,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Advertising-Agency-2.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":234,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team.webp\",\"alt\":\"WTH - Team\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":235,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-1.webp\",\"alt\":\"WTH - Team 1\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":236,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-2.webp\",\"alt\":\"WTH - Team 2\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":237,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-3.webp\",\"alt\":\"WTH - Team 3\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1400,249,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1401,250,'_wp_page_template','elementor_header_footer'),(1402,250,'_elementor_edit_mode','builder'),(1403,250,'_elementor_template_type','wp-page'),(1404,250,'_elementor_version','3.11.5'),(1405,250,'_elementor_pro_version','3.11.6'),(1406,250,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":228,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Marketing-Agency.webp\"},{\"id\":227,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Digital-Marketing-Agency.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":230,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Advertising-Agency.webp\"},{\"id\":229,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Advertising-Agency.webp\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":245,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-2-1.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":234,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team.webp\",\"alt\":\"WTH - Team\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":235,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-1.webp\",\"alt\":\"WTH - Team 1\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":236,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-2.webp\",\"alt\":\"WTH - Team 2\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":237,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-3.webp\",\"alt\":\"WTH - Team 3\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1407,250,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1408,251,'_wp_attached_file','2023/03/WTH-5.webp'),(1409,251,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2023/03/WTH-5.webp\";s:8:\"filesize\";i:32592;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"WTH-5-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11740;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"WTH-5-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5770;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"WTH-5-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34742;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1417,253,'_wp_attached_file','2023/03/WTH-6.webp'),(1418,253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2023/03/WTH-6.webp\";s:8:\"filesize\";i:15354;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"WTH-6-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5494;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"WTH-6-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3380;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"WTH-6-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15372;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1419,254,'_wp_attached_file','2023/03/WTH-7.webp'),(1420,254,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2023/03/WTH-7.webp\";s:8:\"filesize\";i:18754;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"WTH-7-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5898;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"WTH-7-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3500;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"WTH-7-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18066;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1421,255,'_wp_page_template','elementor_header_footer'),(1422,255,'_elementor_edit_mode','builder'),(1423,255,'_elementor_template_type','wp-page'),(1424,255,'_elementor_version','3.11.5'),(1425,255,'_elementor_pro_version','3.11.6'),(1426,255,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":228,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Marketing-Agency.webp\"},{\"id\":227,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Digital-Marketing-Agency.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":230,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Advertising-Agency.webp\"},{\"id\":229,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Advertising-Agency.webp\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":245,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-2-1.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":234,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team.webp\",\"alt\":\"WTH - Team\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":235,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-1.webp\",\"alt\":\"WTH - Team 1\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":236,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-2.webp\",\"alt\":\"WTH - Team 2\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":237,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-3.webp\",\"alt\":\"WTH - Team 3\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1427,255,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1428,256,'_wp_page_template','elementor_header_footer'),(1429,256,'_elementor_edit_mode','builder'),(1430,256,'_elementor_template_type','wp-page'),(1431,256,'_elementor_version','3.11.5'),(1432,256,'_elementor_pro_version','3.11.6'),(1433,256,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":228,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Digital-Marketing-Agency.webp\"},{\"id\":227,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Digital-Marketing-Agency.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bf75185\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7981ad6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":230,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Advertising-Agency.webp\"},{\"id\":229,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Best-Advertising-Agency.webp\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"168b24f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":94,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":245,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-2-1.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":234,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team.webp\",\"alt\":\"WTH - Team\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":235,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-1.webp\",\"alt\":\"WTH - Team 1\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":236,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-2.webp\",\"alt\":\"WTH - Team 2\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":237,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-3.webp\",\"alt\":\"WTH - Team 3\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1434,256,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1435,257,'_wp_page_template','elementor_header_footer'),(1436,257,'_elementor_edit_mode','builder'),(1437,257,'_elementor_template_type','wp-page'),(1438,257,'_elementor_version','3.11.5'),(1439,257,'_elementor_pro_version','3.11.6'),(1440,257,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":234,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team.webp\",\"alt\":\"WTH - Team\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":235,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-1.webp\",\"alt\":\"WTH - Team 1\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":236,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-2.webp\",\"alt\":\"WTH - Team 2\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":237,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-3.webp\",\"alt\":\"WTH - Team 3\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1441,257,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";}}'),(1442,258,'_wp_attached_file','2023/03/placeholder-3.png'),(1443,258,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/03/placeholder-3.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-3-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-3-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-3-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1444,258,'_elementor_source_image_hash','c0164fec8a36cf122c5ad0f8dcf04483507dc156'),(1445,259,'_wp_attached_file','2023/03/restaurant_5.jpg'),(1446,259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2023/03/restaurant_5.jpg\";s:8:\"filesize\";i:114969;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"restaurant_5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21456;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"restaurant_5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140296;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"restaurant_5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10318;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"restaurant_5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90288;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1447,259,'_elementor_source_image_hash','8ef50479a11b8c08fda452dbc6104511779052ee'),(1448,260,'_wp_attached_file','2023/03/restaurant_6.jpg'),(1449,260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2023/03/restaurant_6.jpg\";s:8:\"filesize\";i:173483;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"restaurant_6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22099;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"restaurant_6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165332;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"restaurant_6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10261;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"restaurant_6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103954;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1450,260,'_elementor_source_image_hash','9a606c7d87de78a2d8b41d499db8a1e33e47ab66'),(1451,261,'_wp_attached_file','2023/03/restaurant_3.jpg'),(1452,261,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2023/03/restaurant_3.jpg\";s:8:\"filesize\";i:376505;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"restaurant_3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33159;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"restaurant_3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:306308;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"restaurant_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13735;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"restaurant_3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186759;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1453,261,'_elementor_source_image_hash','0df1c0c03b3550a5568587e2ac429290465495ce'),(1454,262,'_wp_attached_file','2023/03/restaurant_7.jpg'),(1455,262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2023/03/restaurant_7.jpg\";s:8:\"filesize\";i:145922;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"restaurant_7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17605;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"restaurant_7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115337;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"restaurant_7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7802;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"restaurant_7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74151;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1456,262,'_elementor_source_image_hash','fa50df61d8a3ae2951d050bd6b44738c39d406ad'),(1464,264,'_wp_attached_file','2023/03/text-mask-image-1.jpg'),(1465,264,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:29:\"2023/03/text-mask-image-1.jpg\";s:8:\"filesize\";i:93479;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"text-mask-image-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21194;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"text-mask-image-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8810;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"text-mask-image-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96830;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1466,264,'_elementor_source_image_hash','98f3ae7c0fbcbbd7396cc042aea78debd55b05f5'),(1467,265,'_wp_attached_file','2023/03/placeholder-297.png'),(1468,265,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2023/03/placeholder-297.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-297-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-297-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-297-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-297-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1469,265,'_elementor_source_image_hash','eb684da9a063debd5aeebe31697cdfbcda7acc31'),(1470,266,'_wp_attached_file','2023/03/image-accordion-13.jpg'),(1471,266,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:30:\"2023/03/image-accordion-13.jpg\";s:8:\"filesize\";i:8698;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"image-accordion-13-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"image-accordion-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3688;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1472,266,'_elementor_source_image_hash','fae65ad3866df524d73457e1094bfc619b6d0974'),(1473,267,'_wp_attached_file','2023/03/image-accordion-16.jpg'),(1474,267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:30:\"2023/03/image-accordion-16.jpg\";s:8:\"filesize\";i:39003;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"image-accordion-16-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"image-accordion-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5126;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1475,267,'_elementor_source_image_hash','a4f77444997d5984b76783a660a26e694f0f4905'),(1476,268,'_wp_attached_file','2023/03/image-accordion-15.jpg'),(1477,268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:30:\"2023/03/image-accordion-15.jpg\";s:8:\"filesize\";i:40313;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"image-accordion-15-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22307;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"image-accordion-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6742;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1478,268,'_elementor_source_image_hash','80881773413cffc70dd5a46ab515d2c35fa9018b'),(1480,269,'_wp_page_template','elementor_header_footer'),(1481,269,'_elementor_edit_mode','builder'),(1482,269,'_elementor_template_type','wp-page'),(1483,269,'_elementor_version','3.11.5'),(1484,269,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (1485,269,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":234,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team.webp\",\"alt\":\"WTH - Team\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":235,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-1.webp\",\"alt\":\"WTH - Team 1\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":236,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-2.webp\",\"alt\":\"WTH - Team 2\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":237,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-3.webp\",\"alt\":\"WTH - Team 3\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1486,269,'_elementor_page_assets','a:1:{s:6:\"styles\";a:50:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";}}'),(1488,270,'_wp_page_template','elementor_header_footer'),(1489,270,'_elementor_edit_mode','builder'),(1490,270,'_elementor_template_type','wp-page'),(1491,270,'_elementor_version','3.11.5'),(1492,270,'_elementor_pro_version','3.11.6'),(1493,270,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2026b67e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"3db1bc6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf04c1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"MEET THE TEAM\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce14b24\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6b41a563\",\"elType\":\"widget\",\"settings\":{\"title\":\"amazing people\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27784d3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"73b68928\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d13a335\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"TIM PARK\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":234,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team.webp\",\"alt\":\"WTH - Team\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"69747716\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c88dbd\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Jenny S\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":235,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-1.webp\",\"alt\":\"WTH - Team 1\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"3d750eac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2168ab53\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Mike Aiden\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":236,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-2.webp\",\"alt\":\"WTH - Team 2\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb61096\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1ce249d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"282b4d1d\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Lucas Datt\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":237,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-Team-3.webp\",\"alt\":\"WTH - Team 3\",\"source\":\"library\",\"size\":\"\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"7476d59a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"705423ff\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Astrid Park\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":55,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true},{\"id\":\"edb27bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5871c29\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"overlay\",\"ekit_team_name\":\"Clark Son\",\"ekit_team_position\":\"Designer\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"ekit_team_label\":\"Facebook\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#FFFFFF00\",\"_id\":\"97954ae\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},{\"ekit_team_label\":\"Twitter\",\"ekit_team_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#1DA1F200\",\"_id\":\"b694ce3\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\"},{\"ekit_team_label\":\"Pinterest\",\"ekit_team_icons\":{\"value\":\"icon icon-pinterest\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_icon_hover_bg_color\":\"#E6002300\",\"_id\":\"ccf7cdd\",\"ekit_team_socialmedia_icon_bg_color\":\"#A1A1A100\",\"ekit_team_socialmedia_border_border\":\"solid\",\"ekit_team_socialmedia_border_color\":\"#251AFF\"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_team_close_icon_changes\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_image\":{\"id\":56,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg\"},\"ekit_team_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_content_inner_padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_team_content_inner_padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_team_position_margin_bottom_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_padding_tablet\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_team_modal_background_background\":\"classic\",\"__globals__\":{\"ekit_team_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_team_position_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_position_color\":\"globals\\/colors?id=primary\",\"ekit_team_text_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_text_content_color\":\"globals\\/colors?id=secondary\",\"ekit_socialmedai_list_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_background_color\":\"globals\\/colors?id=text\",\"ekit_team_modal_name_typography_typography\":\"globals\\/typography?id=e263706\",\"ekit_team_modal_name_color\":\"globals\\/colors?id=primary\",\"ekit_team_modal_position_color\":\"globals\\/colors?id=secondary\",\"ekit_team_modal_position_typography_typography\":\"globals\\/typography?id=text\",\"modal_desc_color\":\"globals\\/colors?id=secondary\",\"modal_desc_font_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_typography_typography\":\"globals\\/typography?id=text\",\"ekit_team_info_color\":\"globals\\/colors?id=secondary\",\"ekit_team_info_hover_color\":\"globals\\/colors?id=accent\",\"ekit_team_icon_primary_color\":\"globals\\/colors?id=primary\",\"ekit_team_hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1494,270,'_elementor_page_assets','a:1:{s:6:\"styles\";a:50:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";}}'),(1496,271,'_wp_page_template','elementor_header_footer'),(1497,271,'_elementor_edit_mode','builder'),(1498,271,'_elementor_template_type','wp-page'),(1499,271,'_elementor_version','3.11.5'),(1500,271,'_elementor_pro_version','3.11.6'),(1501,271,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1502,271,'_elementor_page_assets','a:1:{s:6:\"styles\";a:50:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";}}'),(1507,273,'_wp_page_template','elementor_header_footer'),(1508,273,'_elementor_edit_mode','builder'),(1509,273,'_elementor_template_type','wp-post'),(1510,273,'_elementor_version','3.11.5'),(1511,273,'_elementor_pro_version','3.11.6'),(1512,273,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1513,273,'_elementor_page_assets','a:0:{}'),(1515,274,'_wp_page_template','elementor_header_footer'),(1516,274,'_elementor_edit_mode','builder'),(1517,274,'_elementor_template_type','wp-post'),(1518,274,'_elementor_version','3.11.5'),(1519,274,'_elementor_pro_version','3.11.6'),(1520,274,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1521,274,'_elementor_page_assets','a:0:{}'),(1523,275,'_wp_page_template','elementor_header_footer'),(1524,275,'_elementor_edit_mode','builder'),(1525,275,'_elementor_template_type','wp-post'),(1526,275,'_elementor_version','3.11.5'),(1527,275,'_elementor_pro_version','3.11.6'),(1528,275,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":272,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1529,275,'_elementor_page_assets','a:0:{}'),(1542,278,'_wp_attached_file','2023/03/WhatTheHell.webp'),(1543,278,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:941;s:6:\"height\";i:105;s:4:\"file\";s:24:\"2023/03/WhatTheHell.webp\";s:8:\"filesize\";i:12454;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"WhatTheHell-300x33.webp\";s:5:\"width\";i:300;s:6:\"height\";i:33;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3346;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"WhatTheHell-150x105.webp\";s:5:\"width\";i:150;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1854;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"WhatTheHell-768x86.webp\";s:5:\"width\";i:768;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1545,279,'_wp_page_template','elementor_header_footer'),(1546,279,'_elementor_edit_mode','builder'),(1547,279,'_elementor_template_type','wp-post'),(1548,279,'_elementor_version','3.11.5'),(1549,279,'_elementor_pro_version','3.11.6'),(1550,279,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":272,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1551,279,'_elementor_page_assets','a:0:{}'),(1553,280,'_wp_page_template','elementor_header_footer'),(1554,280,'_elementor_edit_mode','builder'),(1555,280,'_elementor_template_type','wp-post'),(1556,280,'_elementor_version','3.11.5'),(1557,280,'_elementor_pro_version','3.11.6'),(1558,280,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":272,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1559,280,'_elementor_page_assets','a:0:{}'),(1561,281,'_wp_page_template','elementor_header_footer'),(1562,281,'_elementor_edit_mode','builder'),(1563,281,'_elementor_template_type','wp-post'),(1564,281,'_elementor_version','3.11.5'),(1565,281,'_elementor_pro_version','3.11.6'),(1566,281,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1567,281,'_elementor_page_assets','a:0:{}'),(1570,282,'_wp_page_template','elementor_header_footer'),(1571,282,'_elementor_edit_mode','builder'),(1572,282,'_elementor_template_type','wp-post'),(1573,282,'_elementor_version','3.11.5'),(1574,282,'_elementor_pro_version','3.11.6'),(1575,282,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1576,282,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1578,283,'_wp_page_template','elementor_header_footer'),(1579,283,'_elementor_edit_mode','builder'),(1580,283,'_elementor_template_type','wp-post'),(1581,283,'_elementor_version','3.11.5'),(1582,283,'_elementor_pro_version','3.11.6'),(1583,283,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":191,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Whatthehell-digital-agency.webp\",\"alt\":\"What the hell-digital agency\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1584,283,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1586,284,'_wp_page_template','elementor_header_footer'),(1587,284,'_elementor_edit_mode','builder'),(1588,284,'_elementor_template_type','wp-post'),(1589,284,'_elementor_version','3.11.5'),(1590,284,'_elementor_pro_version','3.11.6'),(1591,284,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1592,284,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1595,285,'_wp_page_template','elementor_header_footer'),(1596,285,'_elementor_edit_mode','builder'),(1597,285,'_elementor_template_type','wp-post'),(1598,285,'_elementor_version','3.11.5'),(1599,285,'_elementor_pro_version','3.11.6'),(1600,285,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1601,285,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1603,286,'_wp_page_template','elementor_header_footer'),(1604,286,'_elementor_edit_mode','builder'),(1605,286,'_elementor_template_type','wp-post'),(1606,286,'_elementor_version','3.11.5'),(1607,286,'_elementor_pro_version','3.11.6'),(1608,286,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1609,286,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1611,287,'_wp_page_template','elementor_header_footer'),(1612,287,'_elementor_edit_mode','builder'),(1613,287,'_elementor_template_type','wp-post'),(1614,287,'_elementor_version','3.11.5'),(1615,287,'_elementor_pro_version','3.11.6'),(1616,287,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.971,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.028999999999996,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1617,287,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1620,288,'_wp_page_template','elementor_header_footer'),(1621,288,'_elementor_edit_mode','builder'),(1622,288,'_elementor_template_type','wp-post'),(1623,288,'_elementor_version','3.11.5'),(1624,288,'_elementor_pro_version','3.11.6'),(1625,288,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1626,288,'_elementor_page_assets','a:0:{}'),(1628,289,'_wp_page_template','elementor_header_footer'),(1629,289,'_elementor_edit_mode','builder'),(1630,289,'_elementor_template_type','wp-post'),(1631,289,'_elementor_version','3.11.5'),(1632,289,'_elementor_pro_version','3.11.6'),(1633,289,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1634,289,'_elementor_page_assets','a:0:{}'),(1636,290,'_wp_page_template','elementor_header_footer'),(1637,290,'_elementor_edit_mode','builder'),(1638,290,'_elementor_template_type','wp-post'),(1639,290,'_elementor_version','3.11.5'),(1640,290,'_elementor_pro_version','3.11.6'),(1641,290,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1642,290,'_elementor_page_assets','a:0:{}'),(1644,291,'_wp_page_template','elementor_header_footer'),(1645,291,'_elementor_edit_mode','builder'),(1646,291,'_elementor_template_type','wp-post'),(1647,291,'_elementor_version','3.11.5'),(1648,291,'_elementor_pro_version','3.11.6'),(1649,291,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.971,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.028999999999996,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1650,291,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1652,292,'_wp_page_template','elementor_header_footer'),(1653,292,'_elementor_edit_mode','builder'),(1654,292,'_elementor_template_type','wp-post'),(1655,292,'_elementor_version','3.11.5'),(1656,292,'_elementor_pro_version','3.11.6'),(1657,292,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.971,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.028999999999996,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1658,292,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1660,293,'_wp_page_template','elementor_header_footer'),(1661,293,'_elementor_edit_mode','builder'),(1662,293,'_elementor_template_type','wp-post'),(1663,293,'_elementor_version','3.11.5'),(1664,293,'_elementor_pro_version','3.11.6'),(1665,293,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.036000000000001,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.963999999999999,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1666,293,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1668,294,'_wp_page_template','elementor_header_footer'),(1669,294,'_elementor_edit_mode','builder'),(1670,294,'_elementor_template_type','wp-post'),(1671,294,'_elementor_version','3.11.5'),(1672,294,'_elementor_pro_version','3.11.6'),(1673,294,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.036000000000001,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.963999999999999,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1674,294,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1675,295,'_wp_page_template','elementor_header_footer'),(1676,295,'_elementor_edit_mode','builder'),(1677,295,'_elementor_template_type','wp-post'),(1678,295,'_elementor_version','3.11.5'),(1679,295,'_elementor_pro_version','3.11.6'),(1680,295,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.036000000000001,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.963999999999999,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1681,295,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1682,296,'_wp_page_template','elementor_header_footer'),(1683,296,'_elementor_edit_mode','builder'),(1684,296,'_elementor_template_type','wp-post'),(1685,296,'_elementor_version','3.11.5'),(1686,296,'_elementor_pro_version','3.11.6'),(1687,296,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1688,296,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1699,298,'_wp_page_template','elementor_header_footer'),(1700,298,'_elementor_edit_mode','builder'),(1701,298,'_elementor_template_type','wp-page'),(1702,298,'_elementor_version','3.11.5'),(1703,298,'_elementor_pro_version','3.11.6'),(1704,298,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1705,298,'_elementor_page_assets','a:1:{s:6:\"styles\";a:45:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";}}'),(1706,299,'_wp_page_template','elementor_header_footer'),(1707,299,'_elementor_edit_mode','builder'),(1708,299,'_elementor_template_type','wp-page'),(1709,299,'_elementor_version','3.11.5'),(1710,299,'_elementor_pro_version','3.11.6'),(1711,299,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1712,299,'_elementor_page_assets','a:1:{s:6:\"styles\";a:45:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";}}'),(1713,300,'_wp_page_template','elementor_header_footer'),(1714,300,'_elementor_edit_mode','builder'),(1715,300,'_elementor_template_type','wp-page'),(1716,300,'_elementor_version','3.11.5'),(1717,300,'_elementor_pro_version','3.11.6'),(1718,300,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"July 5\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"February 2\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"January 31\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1719,300,'_elementor_page_assets','a:1:{s:6:\"styles\";a:45:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";}}'),(1721,301,'_wp_page_template','elementor_header_footer'),(1722,301,'_elementor_edit_mode','builder'),(1723,301,'_elementor_template_type','wp-page'),(1724,301,'_elementor_version','3.11.5'),(1725,301,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (1726,301,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"July 5\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"February 2\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"January 31\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1727,301,'_elementor_page_assets','a:1:{s:6:\"styles\";a:45:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";}}'),(1729,302,'_wp_page_template','elementor_header_footer'),(1730,302,'_elementor_edit_mode','builder'),(1731,302,'_elementor_template_type','wp-page'),(1732,302,'_elementor_version','3.11.5'),(1733,302,'_elementor_pro_version','3.11.6'),(1734,302,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"July 5\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"February 2\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"January 31\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1735,302,'_elementor_page_assets','a:1:{s:6:\"styles\";a:45:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";}}'),(1737,303,'_wp_page_template','elementor_header_footer'),(1738,303,'_elementor_edit_mode','builder'),(1739,303,'_elementor_template_type','wp-page'),(1740,303,'_elementor_version','3.11.5'),(1741,303,'_elementor_pro_version','3.11.6'),(1742,303,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"July 5\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"February 2\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"January 31\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1743,303,'_elementor_page_assets','a:1:{s:6:\"styles\";a:45:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";}}'),(1754,305,'_wp_page_template','elementor_header_footer'),(1755,305,'_elementor_edit_mode','builder'),(1756,305,'_elementor_template_type','wp-page'),(1757,305,'_elementor_version','3.11.5'),(1758,305,'_elementor_pro_version','3.11.6'),(1759,305,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"July 5\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"February 2\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"January 31\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1760,305,'_elementor_page_assets','a:1:{s:6:\"styles\";a:45:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";}}'),(1761,306,'_wp_page_template','elementor_header_footer'),(1762,306,'_elementor_edit_mode','builder'),(1763,306,'_elementor_template_type','wp-page'),(1764,306,'_elementor_version','3.11.5'),(1765,306,'_elementor_pro_version','3.11.6'),(1766,306,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"July 5\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"February 2\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"January 31\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1767,306,'_elementor_page_assets','a:1:{s:6:\"styles\";a:45:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";}}'),(1768,307,'_wp_page_template','elementor_header_footer'),(1769,307,'_elementor_edit_mode','builder'),(1770,307,'_elementor_template_type','wp-page'),(1771,307,'_elementor_version','3.11.5'),(1772,307,'_elementor_pro_version','3.11.6'),(1773,307,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"July 5\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"February 2\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"January 31\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1774,307,'_elementor_page_assets','a:1:{s:6:\"styles\";a:45:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";}}'),(1775,308,'_wp_page_template','elementor_header_footer'),(1776,308,'_elementor_edit_mode','builder'),(1777,308,'_elementor_template_type','wp-page'),(1778,308,'_elementor_version','3.11.5'),(1779,308,'_elementor_pro_version','3.11.6'),(1780,308,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"July 5\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"February 2\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"January 31\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1781,308,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1782,309,'_wp_page_template','elementor_header_footer'),(1783,309,'_elementor_edit_mode','builder'),(1784,309,'_elementor_template_type','wp-page'),(1785,309,'_elementor_version','3.11.5'),(1786,309,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (1787,309,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"July 5\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"February 2\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"January 31\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"March 30\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1788,309,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1789,310,'_wp_page_template','elementor_header_footer'),(1790,310,'_elementor_edit_mode','builder'),(1791,310,'_elementor_template_type','wp-page'),(1792,310,'_elementor_version','3.11.5'),(1793,310,'_elementor_pro_version','3.11.6'),(1794,310,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1795,310,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1805,313,'_wp_page_template','elementor_header_footer'),(1806,313,'_elementor_edit_mode','builder'),(1807,313,'_elementor_template_type','wp-page'),(1808,313,'_elementor_version','3.11.5'),(1809,313,'_elementor_pro_version','3.11.6'),(1810,313,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1811,313,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1812,314,'_wp_page_template','elementor_header_footer'),(1813,314,'_elementor_edit_mode','builder'),(1814,314,'_elementor_template_type','wp-page'),(1815,314,'_elementor_version','3.11.5'),(1816,314,'_elementor_pro_version','3.11.6'),(1817,314,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"we love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1818,314,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1819,315,'_wp_page_template','elementor_header_footer'),(1820,315,'_elementor_edit_mode','builder'),(1821,315,'_elementor_template_type','wp-page'),(1822,315,'_elementor_version','3.11.5'),(1823,315,'_elementor_pro_version','3.11.6'),(1824,315,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1825,315,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1833,317,'_wp_page_template','elementor_header_footer'),(1834,317,'_elementor_edit_mode','builder'),(1835,317,'_elementor_template_type','wp-page'),(1836,317,'_elementor_version','3.11.5'),(1837,317,'_elementor_pro_version','3.11.6'),(1838,317,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1839,317,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1840,318,'_wp_page_template','elementor_header_footer'),(1841,318,'_elementor_edit_mode','builder'),(1842,318,'_elementor_template_type','wp-page'),(1843,318,'_elementor_version','3.11.5'),(1844,318,'_elementor_pro_version','3.11.6'),(1845,318,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1846,318,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1847,319,'_wp_page_template','elementor_header_footer'),(1848,319,'_elementor_edit_mode','builder'),(1849,319,'_elementor_template_type','wp-page'),(1850,319,'_elementor_version','3.11.5'),(1851,319,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (1852,319,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1853,319,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1854,320,'_wp_page_template','elementor_header_footer'),(1855,320,'_elementor_edit_mode','builder'),(1856,320,'_elementor_template_type','wp-page'),(1857,320,'_elementor_version','3.11.5'),(1858,320,'_elementor_pro_version','3.11.6'),(1859,320,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1860,320,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1861,321,'_wp_page_template','elementor_header_footer'),(1862,321,'_elementor_edit_mode','builder'),(1863,321,'_elementor_template_type','wp-page'),(1864,321,'_elementor_version','3.11.5'),(1865,321,'_elementor_pro_version','3.11.6'),(1866,321,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#960D0D\",\"twae_icon_color\":\"#BC6666\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#763333\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1867,321,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1868,322,'_wp_page_template','elementor_header_footer'),(1869,322,'_elementor_edit_mode','builder'),(1870,322,'_elementor_template_type','wp-page'),(1871,322,'_elementor_version','3.11.5'),(1872,322,'_elementor_pro_version','3.11.6'),(1873,322,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1874,322,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1883,324,'_wp_page_template','elementor_header_footer'),(1884,324,'_elementor_edit_mode','builder'),(1885,324,'_elementor_template_type','wp-page'),(1886,324,'_elementor_version','3.11.5'),(1887,324,'_elementor_pro_version','3.11.6'),(1888,324,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1889,324,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1891,325,'_wp_page_template','elementor_header_footer'),(1892,325,'_elementor_edit_mode','builder'),(1893,325,'_elementor_template_type','wp-page'),(1894,325,'_elementor_version','3.11.5'),(1895,325,'_elementor_pro_version','3.11.6'),(1896,325,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\"},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ENJOY OUR LATEST WORK\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":112,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":171,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS WORLDWIDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1897,325,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1899,326,'_wp_page_template','elementor_header_footer'),(1900,326,'_elementor_edit_mode','builder'),(1901,326,'_elementor_template_type','wp-page'),(1902,326,'_elementor_version','3.11.5'),(1903,326,'_elementor_pro_version','3.11.6'),(1904,326,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1905,326,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1907,327,'_wp_page_template','elementor_header_footer'),(1908,327,'_elementor_edit_mode','builder'),(1909,327,'_elementor_template_type','wp-page'),(1910,327,'_elementor_version','3.11.5'),(1911,327,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (1912,327,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1913,327,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1914,328,'_wp_page_template','elementor_header_footer'),(1915,328,'_elementor_edit_mode','builder'),(1916,328,'_elementor_template_type','wp-page'),(1917,328,'_elementor_version','3.11.5'),(1918,328,'_elementor_pro_version','3.11.6'),(1919,328,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1920,328,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1921,329,'_wp_page_template','elementor_header_footer'),(1922,329,'_elementor_edit_mode','builder'),(1923,329,'_elementor_template_type','wp-page'),(1924,329,'_elementor_version','3.11.5'),(1925,329,'_elementor_pro_version','3.11.6'),(1926,329,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1927,329,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1929,330,'_wp_page_template','elementor_header_footer'),(1930,330,'_elementor_edit_mode','builder'),(1931,330,'_elementor_template_type','wp-page'),(1932,330,'_elementor_version','3.11.5'),(1933,330,'_elementor_pro_version','3.11.6'),(1934,330,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1935,330,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1937,331,'_wp_page_template','elementor_header_footer'),(1938,331,'_elementor_edit_mode','builder'),(1939,331,'_elementor_template_type','wp-page'),(1940,331,'_elementor_version','3.11.5'),(1941,331,'_elementor_pro_version','3.11.6'),(1942,331,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f480dc8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37428b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fc90575\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLIENT TESTIMONIALS\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1caecde8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"686a8389\",\"elType\":\"widget\",\"settings\":{\"title\":\"what the say about us\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bdb109b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"234dbebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.591000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48cb7d4b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"LINDA LINDSAY\",\"_id\":\"a54079f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"},\"client_photo\":{\"id\":39,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-1_portrait-min.jpeg\"},\"client_logo\":{\"id\":40,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-5.png\"},\"use_hover_logo\":\"\"},{\"client_name\":\"TOMMY WONG\",\"_id\":\"b08f924\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":42,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-2_portrait-min.jpeg\"},\"client_logo\":{\"id\":43,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-4.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"client_name\":\"PARK OCHUN\",\"_id\":\"681318f\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":44,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-5_portrait-min.jpeg\"},\"client_logo\":{\"id\":45,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-3.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"0997bd9\",\"client_name\":\"GABBY TIM\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":46,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-3_portrait-min.jpeg\"},\"client_logo\":{\"id\":47,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-2.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}},{\"_id\":\"a1d03af\",\"client_name\":\"JHON SEANA\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.\",\"client_photo\":{\"id\":48,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_Artboard-4_portrait-min.jpeg\"},\"client_logo\":{\"id\":49,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/clientlogo_Artboard-1.png\"},\"client_logo_active\":{\"id\":41,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":5000,\"ekit_testimonial_title_separator_height\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_client_logo_margin_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_testimonial_client_image_background_background\":\"classic\",\"ekit_testimonial_client_image_background_color\":\"#251AFF4A\",\"__globals__\":{\"ekit_testimonial_layout_active_background_color\":\"\",\"ekit_testimonial_description_active_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"\",\"ekit_testimonial_section_wathermark_active_color\":\"\",\"ekit_testimonial_client_name_active_color\":\"\",\"ekit_testimonial_layout_background_color\":\"\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_image_background_color\":\"\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=3ac5d19\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_left_arrows\":{\"value\":\"fas fa-chevron-left\",\"library\":\"fa-solid\"},\"ekit_testimonial_right_arrows\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_testimonial_nav_font_color_normal\":\"#251AFF\",\"ekit_testimonial_slidetoshow_tablet\":2,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_designation_normal_color\":\"#3F3F3F\",\"ekit_testimonial_slidesToScroll\":4,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_wartermark_enable\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"1c45fd25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.368000000000002,\"content_position\":\"center\",\"background_background\":\"gradient\",\"background_image\":{\"id\":50,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg\"},\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_color\":\"#251AFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_color_b\":\"#FF2900\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4475d780\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote2\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"we also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1943,331,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1945,332,'_wp_page_template','elementor_header_footer'),(1946,332,'_elementor_edit_mode','builder'),(1947,332,'_elementor_template_type','wp-page'),(1948,332,'_elementor_version','3.11.5'),(1949,332,'_elementor_pro_version','3.11.6'),(1950,332,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1951,332,'_elementor_page_assets','a:1:{s:6:\"styles\";a:48:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";}}'),(1962,334,'_wp_page_template','elementor_header_footer'),(1963,334,'_elementor_edit_mode','builder'),(1964,334,'_elementor_template_type','wp-post'),(1965,334,'_elementor_version','3.11.5'),(1966,334,'_elementor_pro_version','3.11.6'),(1967,334,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1968,334,'_elementor_page_assets','a:0:{}'),(1969,335,'_wp_page_template','elementor_header_footer'),(1970,335,'_elementor_edit_mode','builder'),(1971,335,'_elementor_template_type','wp-post'),(1972,335,'_elementor_version','3.11.5'),(1973,335,'_elementor_pro_version','3.11.6'),(1974,335,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 UNQ Design<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1975,335,'_elementor_page_assets','a:0:{}'),(1976,336,'_wp_page_template','elementor_header_footer'),(1977,336,'_elementor_edit_mode','builder'),(1978,336,'_elementor_template_type','wp-post'),(1979,336,'_elementor_version','3.11.5'),(1980,336,'_elementor_pro_version','3.11.6'),(1981,336,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1982,336,'_elementor_page_assets','a:0:{}'),(1992,338,'_elementor_edit_mode','builder'),(1993,338,'_elementor_template_type','landing-page'),(1994,339,'_elementor_edit_mode','builder'),(1995,339,'_elementor_template_type','landing-page'),(1996,340,'_elementor_edit_mode','builder'),(1997,340,'_elementor_template_type','landing-page'),(1998,338,'_wp_page_template','elementor_canvas'),(1999,338,'_elementor_version','3.12.1'),(2000,338,'_elementor_pro_version','3.11.6'),(2001,341,'_elementor_edit_mode','builder'),(2002,341,'_elementor_template_type','landing-page'),(2003,341,'_wp_page_template','elementor_canvas'),(2004,341,'_elementor_version','3.12.0'),(2005,341,'_elementor_pro_version','3.11.6'),(2006,338,'_edit_lock','1680786081:1'),(2007,338,'ekit_post_views_count','29'),(2008,342,'_elementor_edit_mode','builder'),(2009,342,'_elementor_template_type','landing-page'),(2010,342,'_wp_page_template','elementor_canvas'),(2011,342,'_elementor_version','3.12.0'),(2012,342,'_elementor_pro_version','3.11.6'),(2013,343,'_wp_attached_file','2023/03/Chef_logo.png'),(2014,343,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:45;s:4:\"file\";s:21:\"2023/03/Chef_logo.png\";s:8:\"filesize\";i:3770;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Chef_logo-150x45.png\";s:5:\"width\";i:150;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2594;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2015,343,'_elementor_source_image_hash','319d7512e21e43fbdca92216d998881d68b21fd2'),(2016,344,'_wp_attached_file','2023/03/Chef_hero_pic.jpg'),(2017,344,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:568;s:4:\"file\";s:25:\"2023/03/Chef_hero_pic.jpg\";s:8:\"filesize\";i:136637;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Chef_hero_pic-300x118.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7362;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"Chef_hero_pic-1024x402.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47750;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Chef_hero_pic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5360;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Chef_hero_pic-768x301.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:301;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30738;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2018,344,'_elementor_source_image_hash','42bd39e9d4ab969434141d379c3325a71bfcdc0f'),(2019,345,'_wp_attached_file','2023/03/service_icon1.svg'),(2020,345,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:4124;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),(2021,345,'_elementor_source_image_hash','edd21e5fc76a337485a9b34a08622810f1b9b303'),(2022,346,'_wp_attached_file','2023/03/service_icon2.svg'),(2023,346,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:5281;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),(2024,346,'_elementor_source_image_hash','5a92b5f99784041b720a6aacdb1b983b2a5d8d4a'),(2025,347,'_wp_attached_file','2023/03/service_icon3.svg'),(2026,347,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:8117;s:5:\"width\";i:78;s:6:\"height\";i:78;}'),(2027,347,'_elementor_source_image_hash','a16297a2c9861cb124059d85fb4baacd301787a5'),(2028,348,'_wp_attached_file','2023/03/service_icon4.svg'),(2029,348,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:4358;s:5:\"width\";i:63;s:6:\"height\";i:63;}'),(2030,348,'_elementor_source_image_hash','c48ed14835c098f05b5b58d4e003ff1e4da5db1c'),(2031,349,'_wp_attached_file','2023/03/working_chef_pic2.jpg'),(2032,349,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:859;s:4:\"file\";s:29:\"2023/03/working_chef_pic2.jpg\";s:8:\"filesize\";i:108282;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"working_chef_pic2-262x300.jpg\";s:5:\"width\";i:262;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14145;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"working_chef_pic2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5415;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2033,349,'_elementor_source_image_hash','b270fadeebf993cb1f41f8d7e43fbfe8ae4bf4e4'),(2034,350,'_wp_attached_file','2023/03/working_chef_pic3.jpg'),(2035,350,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:861;s:4:\"file\";s:29:\"2023/03/working_chef_pic3.jpg\";s:8:\"filesize\";i:119860;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"working_chef_pic3-261x300.jpg\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15117;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"working_chef_pic3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5967;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2036,350,'_elementor_source_image_hash','fe4c00c564226c972f81905f0157d43bde9d30c5'),(2037,351,'_wp_attached_file','2023/03/working_chef_pic1.jpg'),(2038,351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:859;s:4:\"file\";s:29:\"2023/03/working_chef_pic1.jpg\";s:8:\"filesize\";i:113547;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"working_chef_pic1-262x300.jpg\";s:5:\"width\";i:262;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15428;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"working_chef_pic1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6256;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2039,351,'_elementor_source_image_hash','9b4e361c914682b07aa7f7eca845d74c35a904c8'),(2040,352,'_wp_attached_file','2023/03/quote-mark.svg'),(2041,352,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:1378;s:5:\"width\";i:34;s:6:\"height\";i:26;}'),(2042,352,'_elementor_source_image_hash','c3646225e5bfb028951684c36a2f28889927ac5e'),(2043,353,'_wp_attached_file','2023/03/call-to-action-pic1.jpg'),(2044,353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:313;s:6:\"height\";i:360;s:4:\"file\";s:31:\"2023/03/call-to-action-pic1.jpg\";s:8:\"filesize\";i:31833;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"call-to-action-pic1-261x300.jpg\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15137;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"call-to-action-pic1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6112;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2045,353,'_elementor_source_image_hash','c4337e71a0a86964b24a5b0a23dc8d3ecdcc6442'),(2046,354,'_wp_attached_file','2023/03/call-to-action-pic2.jpg'),(2047,354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:376;s:6:\"height\";i:330;s:4:\"file\";s:31:\"2023/03/call-to-action-pic2.jpg\";s:8:\"filesize\";i:29610;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"call-to-action-pic2-300x263.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13007;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"call-to-action-pic2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2048,354,'_elementor_source_image_hash','c7f1c811d40319f9db49793a570a6213cdb1d321'),(2049,355,'_wp_attached_file','2023/03/insta-icon-1.svg'),(2050,355,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:1383;s:5:\"width\";i:26;s:6:\"height\";i:26;}'),(2051,355,'_elementor_source_image_hash','b24cd84f7a6e1dbc94218c7d9988e8950d2a587e'),(2058,338,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2059,338,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb71698\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"elementskit-wp-forms\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2060,338,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2061,165,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:5;s:11:\"header_size\";i:1;s:5:\"align\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:7;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:15:\"background_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:5:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:7:\"columns\";i:1;s:14:\"columns_mobile\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:17:\"hfe-search-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:2:{s:6:\"layout\";i:1;s:11:\"placeholder\";i:1;}}s:5:\"style\";a:3:{s:19:\"section_input_style\";a:4:{s:23:\"input_placeholder_color\";i:1;s:22:\"input_background_color\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_button_style\";a:1:{s:23:\"button_background_color\";i:1;}s:18:\"section_close_icon\";a:2:{s:10:\"text_color\";i:1;s:21:\"hover_close_icon_text\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:12:\"border_width\";i:1;s:13:\"border_border\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:12:\"border_color\";i:1;}}}}}'),(2062,160,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:16;s:11:\"header_size\";i:8;s:5:\"align\";i:9;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:12;s:8:\"_padding\";i:3;}s:15:\"_section_border\";a:3:{s:13:\"_border_width\";i:7;s:13:\"_border_color\";i:4;s:14:\"_border_border\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:16;s:16:\"content_position\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:14:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:4;s:16:\"background_image\";i:5;s:15:\"background_size\";i:5;s:27:\"background_hover_background\";i:3;s:22:\"background_hover_image\";i:3;s:21:\"background_hover_size\";i:3;s:27:\"background_hover_transition\";i:3;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:2;s:40:\"background_slideshow_transition_duration\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_hover_border\";i:2;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:10;s:7:\"padding\";i:10;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:11;s:15:\"animation_delay\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:3;s:19:\"background_position\";i:2;s:15:\"background_size\";i:3;s:16:\"background_color\";i:1;s:21:\"background_attachment\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:5;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:7;s:5:\"align\";i:5;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:7;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:27;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:27;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:24;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:10:\"text_color\";i:6;s:5:\"align\";i:21;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:6;s:5:\"align\";i:6;s:13:\"selected_icon\";i:3;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:13:\"border_radius\";i:7;s:12:\"text_padding\";i:7;s:13:\"border_border\";i:3;s:12:\"border_width\";i:7;s:16:\"background_color\";i:3;s:17:\"button_text_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(2063,155,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:11;s:11:\"header_size\";i:3;s:5:\"align\";i:5;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:21;s:16:\"content_position\";i:6;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:5:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_hover_border\";i:3;s:18:\"border_hover_width\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:11;s:6:\"margin\";i:10;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;s:21:\"background_attachment\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:7;s:6:\"margin\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:15:\"animation_delay\";i:2;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:13:\"content_width\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:3;s:5:\"title\";i:3;s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}}'),(2064,150,'_elementor_controls_usage','a:11:{s:7:\"heading\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:17;s:11:\"header_size\";i:5;s:5:\"align\";i:11;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:7;s:16:\"_animation_delay\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:8;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:26;s:16:\"content_position\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:10:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:2;s:16:\"background_image\";i:7;s:15:\"background_size\";i:7;s:21:\"background_color_stop\";i:1;s:19:\"background_position\";i:6;s:27:\"background_hover_background\";i:6;s:22:\"background_hover_image\";i:6;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:2;s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:1;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:16;s:15:\"animation_delay\";i:10;s:16:\"animation_mobile\";i:4;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:3;s:19:\"background_position\";i:1;s:15:\"background_size\";i:2;s:16:\"background_color\";i:1;s:21:\"background_attachment\";i:2;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_mobile\";i:3;s:20:\"reverse_order_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:5;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:18:\"image_border_width\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:4;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:5;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:5;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:5;s:9:\"icon_size\";i:5;s:11:\"text_indent\";i:5;}s:18:\"section_text_style\";a:2:{s:10:\"text_color\";i:5;s:16:\"text_color_hover\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_tablet\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:5;s:12:\"align_mobile\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:16:\"background_color\";i:1;s:12:\"border_width\";i:5;s:13:\"border_radius\";i:5;s:12:\"text_padding\";i:5;s:17:\"button_text_color\";i:1;s:13:\"border_border\";i:4;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:5;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:5;s:4:\"size\";i:5;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:18:\"thousand_separator\";i:4;s:5:\"title\";i:4;s:13:\"ending_number\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:6;}}}}}'),(2067,114,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:15:\"hover_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:16:\"content_position\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:15:\"animation_delay\";i:2;}s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:12:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";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:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:2;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:6:\"margin\";i:1;s:7:\"z_index\";i:1;}s:15:\"section_effects\";a:1:{s:15:\"animation_delay\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(2068,116,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:5:\"align\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:5;s:8:\"_padding\";i:5;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:5;s:13:\"_border_color\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:1:{s:4:\"menu\";i:1;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:5:{s:7:\"pointer\";i:1;s:14:\"animation_text\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:2:{s:25:\"color_dropdown_item_hover\";i:1;s:23:\"dropdown_divider_border\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:2;}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:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(2069,112,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:7;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:2;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_tablet\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:16;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:10;s:6:\"margin\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:15:\"animation_delay\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:19:\"background_position\";i:1;s:15:\"background_size\";i:3;s:16:\"background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:5;s:8:\"_padding\";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:2:{s:6:\"layout\";i:1;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:15:\"animation_delay\";i:1;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:5:\"align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:2;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:6:{s:16:\"social_icon_list\";i:2;s:5:\"shape\";i:2;s:7:\"columns\";i:2;s:14:\"columns_mobile\";i:2;s:12:\"align_mobile\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:2;s:18:\"icon_primary_color\";i:2;s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;s:12:\"icon_spacing\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:17:\"hfe-search-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:2:{s:6:\"layout\";i:1;s:11:\"placeholder\";i:1;}}s:5:\"style\";a:3:{s:19:\"section_input_style\";a:4:{s:23:\"input_placeholder_color\";i:1;s:22:\"input_background_color\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_button_style\";a:1:{s:23:\"button_background_color\";i:1;}s:18:\"section_close_icon\";a:2:{s:10:\"text_color\";i:1;s:21:\"hover_close_icon_text\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:12:\"border_width\";i:1;s:13:\"border_border\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:12:\"border_color\";i:1;}}}}}'),(2070,108,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:5;s:11:\"header_size\";i:1;s:5:\"align\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:7;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:15:\"background_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:5:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:7:\"columns\";i:1;s:14:\"columns_mobile\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:17:\"hfe-search-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:2:{s:6:\"layout\";i:1;s:11:\"placeholder\";i:1;}}s:5:\"style\";a:3:{s:19:\"section_input_style\";a:4:{s:23:\"input_placeholder_color\";i:1;s:22:\"input_background_color\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_button_style\";a:1:{s:23:\"button_background_color\";i:1;}s:18:\"section_close_icon\";a:2:{s:10:\"text_color\";i:1;s:21:\"hover_close_icon_text\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:12:\"border_width\";i:1;s:13:\"border_border\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:12:\"border_color\";i:1;}}}}}'),(2071,105,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:17:\"hfe-search-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:22:\"section_general_fields\";a:2:{s:6:\"layout\";i:1;s:11:\"placeholder\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_input_style\";a:4:{s:23:\"input_placeholder_color\";i:1;s:22:\"input_background_color\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i: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:2;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;}}}}}'),(2072,101,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i: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:2;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;}}}}}'),(2073,97,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:7;s:11:\"header_size\";i:2;s:5:\"align\";i:7;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:7;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:5:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:19:\"border_hover_border\";i:2;s:18:\"border_hover_width\";i:2;}s:13:\"section_style\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:15:\"background_ypos\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:15:\"animation_delay\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:5;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:2;s:13:\"content_width\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:7;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:16:\"background_color\";i:6;s:12:\"text_padding\";i:7;s:13:\"border_border\";i:7;s:12:\"border_width\";i:7;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:7;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:17:\"section_map_style\";a:6:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_contrast\";i:1;s:20:\"css_filters_saturate\";i:1;s:15:\"css_filters_hue\";i:1;s:28:\"css_filters_hover_css_filter\";i:1;s:16:\"hover_transition\";i:1;}}}}}'),(2074,94,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:11:\"header_size\";i:6;s:5:\"align\";i:3;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:3;s:15:\"background_size\";i:3;s:27:\"background_hover_background\";i:3;s:22:\"background_hover_image\";i:3;s:21:\"background_hover_size\";i:3;s:27:\"background_hover_transition\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:5;s:15:\"animation_delay\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:15:\"background_ypos\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:4;s:7:\"z_index\";i:1;s:6:\"margin\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:13:\"content_width\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:13:\"border_radius\";i:4;s:12:\"text_padding\";i:4;s:13:\"border_border\";i:3;s:12:\"border_width\";i:4;s:16:\"background_color\";i:1;s:17:\"button_text_color\";i:1;}}}}}'),(2075,90,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:11:\"header_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:15:\"animation_delay\";i:3;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:6:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:7:\"columns\";i:1;s:5:\"align\";i:1;s:14:\"columns_mobile\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:1:{s:11:\"text_indent\";i:1;}}}}}'),(2076,85,'_elementor_controls_usage','a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;s:5:\"align\";i:3;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}}'),(2077,87,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:11;s:11:\"header_size\";i:3;s:5:\"align\";i:5;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:21;s:16:\"content_position\";i:6;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:5:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_hover_border\";i:3;s:18:\"border_hover_width\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:11;s:6:\"margin\";i:10;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;s:21:\"background_attachment\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:7;s:6:\"margin\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:15:\"animation_delay\";i:2;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:13:\"content_width\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:3;s:5:\"title\";i:3;s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}}'),(2079,82,'_elementor_controls_usage','a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;s:5:\"align\";i:3;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}}'),(2080,79,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:11;s:11:\"header_size\";i:7;s:5:\"align\";i:6;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:6;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:16;s:16:\"content_position\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_color\";i:3;s:16:\"background_image\";i:9;s:15:\"background_size\";i:9;s:27:\"background_hover_background\";i:9;s:22:\"background_hover_image\";i:9;s:21:\"background_hover_size\";i:3;s:27:\"background_hover_transition\";i:3;s:19:\"background_position\";i:6;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:15:\"animation_delay\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:3;s:19:\"background_position\";i:2;s:15:\"background_size\";i:3;s:16:\"background_color\";i:1;s:21:\"background_attachment\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:2;s:13:\"content_width\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:5;s:5:\"align\";i:4;s:13:\"selected_icon\";i:3;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:13:\"border_radius\";i:5;s:12:\"text_padding\";i:5;s:13:\"border_border\";i:4;s:12:\"border_width\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:6;}}}}}'),(2081,74,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:16;s:11:\"header_size\";i:8;s:5:\"align\";i:9;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:12;s:8:\"_padding\";i:3;}s:15:\"_section_border\";a:3:{s:13:\"_border_width\";i:7;s:13:\"_border_color\";i:4;s:14:\"_border_border\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:16;s:16:\"content_position\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:14:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:4;s:16:\"background_image\";i:5;s:15:\"background_size\";i:5;s:27:\"background_hover_background\";i:3;s:22:\"background_hover_image\";i:3;s:21:\"background_hover_size\";i:3;s:27:\"background_hover_transition\";i:3;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:2;s:40:\"background_slideshow_transition_duration\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_hover_border\";i:2;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:10;s:7:\"padding\";i:10;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:11;s:15:\"animation_delay\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:3;s:19:\"background_position\";i:2;s:15:\"background_size\";i:3;s:16:\"background_color\";i:1;s:21:\"background_attachment\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:5;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:7;s:5:\"align\";i:5;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:7;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:27;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:27;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:24;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:10:\"text_color\";i:6;s:5:\"align\";i:21;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:6;s:5:\"align\";i:6;s:13:\"selected_icon\";i:3;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:13:\"border_radius\";i:7;s:12:\"text_padding\";i:7;s:13:\"border_border\";i:3;s:12:\"border_width\";i:7;s:16:\"background_color\";i:3;s:17:\"button_text_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(2082,70,'_elementor_controls_usage','a:11:{s:7:\"heading\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:17;s:11:\"header_size\";i:5;s:5:\"align\";i:11;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:7;s:16:\"_animation_delay\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:8;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:26;s:16:\"content_position\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:10:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:2;s:16:\"background_image\";i:7;s:15:\"background_size\";i:7;s:21:\"background_color_stop\";i:1;s:19:\"background_position\";i:6;s:27:\"background_hover_background\";i:6;s:22:\"background_hover_image\";i:6;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:2;s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:1;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:16;s:15:\"animation_delay\";i:10;s:16:\"animation_mobile\";i:4;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:3;s:19:\"background_position\";i:1;s:15:\"background_size\";i:2;s:16:\"background_color\";i:1;s:21:\"background_attachment\";i:2;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_mobile\";i:3;s:20:\"reverse_order_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:5;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:18:\"image_border_width\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:4;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:5;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:5;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:5;s:9:\"icon_size\";i:5;s:11:\"text_indent\";i:5;}s:18:\"section_text_style\";a:2:{s:10:\"text_color\";i:5;s:16:\"text_color_hover\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_tablet\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:5;s:12:\"align_mobile\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:16:\"background_color\";i:1;s:12:\"border_width\";i:5;s:13:\"border_radius\";i:5;s:12:\"text_padding\";i:5;s:17:\"button_text_color\";i:1;s:13:\"border_border\";i:4;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:5;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:5;s:4:\"size\";i:5;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:18:\"thousand_separator\";i:4;s:5:\"title\";i:4;s:13:\"ending_number\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:6;}}}}}'),(2083,59,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:23;s:11:\"header_size\";i:12;s:5:\"align\";i:18;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:17;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:10;s:16:\"_animation_delay\";i:4;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:7;s:13:\"_border_color\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:11:\"title_color\";i:4;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:8;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:8;s:3:\"gap\";i:8;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:8;s:5:\"align\";i:7;s:13:\"selected_icon\";i:5;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:12:\"border_width\";i:8;s:13:\"border_radius\";i:8;s:12:\"text_padding\";i:8;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:13:\"border_border\";i:6;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:5:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:7:\"columns\";i:1;s:14:\"columns_mobile\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:26;s:16:\"content_position\";i:3;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:15:{s:21:\"background_background\";i:15;s:16:\"background_image\";i:12;s:15:\"background_size\";i:11;s:19:\"background_position\";i:7;s:28:\"background_slideshow_gallery\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:16:\"background_color\";i:4;s:27:\"background_hover_background\";i:9;s:22:\"background_hover_image\";i:9;s:21:\"background_hover_size\";i:3;s:27:\"background_hover_transition\";i:3;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;s:13:\"border_radius\";i:2;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:9;s:6:\"margin\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:13;s:15:\"animation_delay\";i:10;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:7;s:6:\"layout\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:25:\"background_gradient_angle\";i:1;s:16:\"background_image\";i:4;s:15:\"background_size\";i:4;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:2;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:7;s:6:\"margin\";i:2;s:7:\"z_index\";i:1;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_mobile\";i:2;s:20:\"reverse_order_tablet\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:6;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:8;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:8;s:4:\"size\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:4;s:5:\"title\";i:4;s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}}'),(2084,13,'_elementor_controls_usage','a:10:{s:7:\"divider\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:9;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:9;s:3:\"gap\";i:9;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:6;s:16:\"_animation_delay\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:35;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:35;s:11:\"header_size\";i:13;s:5:\"align\";i:19;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:22;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:12;s:16:\"_animation_delay\";i:6;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:11;s:13:\"_border_color\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:11:\"title_color\";i:3;s:10:\"blend_mode\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:7;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:15;s:12:\"align_tablet\";i:9;s:5:\"align\";i:5;s:13:\"selected_icon\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:14:{s:17:\"button_text_color\";i:11;s:16:\"background_color\";i:11;s:12:\"border_width\";i:16;s:13:\"border_radius\";i:7;s:12:\"text_padding\";i:16;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:13:\"border_border\";i:15;s:12:\"border_color\";i:1;s:15:\"hover_animation\";i:9;s:11:\"hover_color\";i:9;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:9;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:6:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:7:\"columns\";i:1;s:5:\"align\";i:1;s:14:\"columns_mobile\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:51;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:51;s:16:\"content_position\";i:8;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:22;s:7:\"padding\";i:15;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:18;s:15:\"animation_delay\";i:11;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:16:{s:21:\"background_background\";i:17;s:28:\"background_slideshow_gallery\";i:3;s:16:\"background_color\";i:5;s:16:\"background_image\";i:13;s:15:\"background_size\";i:12;s:27:\"background_hover_background\";i:9;s:22:\"background_hover_image\";i:9;s:21:\"background_hover_size\";i:3;s:27:\"background_hover_transition\";i:3;s:19:\"background_position\";i:8;s:25:\"background_gradient_angle\";i:2;s:40:\"background_slideshow_transition_duration\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;s:13:\"border_radius\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:12;s:6:\"layout\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:16;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:6;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:25:\"background_gradient_angle\";i:1;s:16:\"background_image\";i:5;s:15:\"background_size\";i:3;s:21:\"background_attachment\";i:4;s:36:\"background_slideshow_background_size\";i:2;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:12;s:6:\"margin\";i:3;s:7:\"z_index\";i:1;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_mobile\";i:2;s:20:\"reverse_order_tablet\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:15:\"animation_delay\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:9;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:3;s:5:\"title\";i:3;s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}}}}'),(2099,356,'_wp_attached_file','2023/03/Digital.agency.webp'),(2100,356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:568;s:4:\"file\";s:27:\"2023/03/Digital.agency.webp\";s:8:\"filesize\";i:29752;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Digital.agency-300x243.webp\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11716;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Digital.agency-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5186;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2101,357,'_wp_attached_file','2023/03/brain-2062055_1920.jpg'),(2102,357,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:987;s:4:\"file\";s:30:\"2023/03/brain-2062055_1920.jpg\";s:8:\"filesize\";i:371881;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"brain-2062055_1920-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13339;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"brain-2062055_1920-1024x526.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:526;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112842;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"brain-2062055_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10502;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"brain-2062055_1920-768x395.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68966;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"brain-2062055_1920-1536x790.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:790;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221555;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2103,358,'_wp_attached_file','2023/04/Untitled-design-16.png'),(2104,358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:568;s:4:\"file\";s:30:\"2023/04/Untitled-design-16.png\";s:8:\"filesize\";i:650287;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Untitled-design-16-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70444;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Untitled-design-16-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49007;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Untitled-design-16-768x436.png\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:384764;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2105,359,'_wp_attached_file','2023/04/Untitled-design-17.png'),(2106,359,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:568;s:4:\"file\";s:30:\"2023/04/Untitled-design-17.png\";s:8:\"filesize\";i:371990;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Untitled-design-17-300x189.png\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54360;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Untitled-design-17-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26916;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Untitled-design-17-768x485.png\";s:5:\"width\";i:768;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:253363;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2107,360,'_elementor_edit_mode','builder'),(2108,360,'_elementor_template_type','landing-page'),(2109,360,'_wp_page_template','elementor_canvas'),(2110,360,'_elementor_version','3.12.1'),(2111,360,'_elementor_pro_version','3.11.6'),(2112,360,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}');
INSERT INTO `wp_postmeta` VALUES (2113,360,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"16\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself and your friends to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Grocery Shopping\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"90\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chef\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Henry Simmons\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectet adipiscing\\u00a0elit,sed do eiusm por incunt ullat labore et dolore magna aliqua enim alld minm venim quis nostrud ercitaion ullamco labris nisio aliqup exea sint ocae cupidatat nonu old proident sunt iton culpalla officia mollit natoque massa quis enim dnec pede justo, fringilla semper nacish aene vulpte eleifend tellu noyam quam nunc tolos the old fouture.\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Chef Henry\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":349,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic2.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":351,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic1.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"60\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reviews From My Satisfied Clients\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cChef Henry prepared an exceptional birthday dinner for my wife. The food was amazing and our guests were all very impressed by his talent. We had the best time and will definitely book him again for our next dinner party.\\\"\",\"author_name\":\"Steve Anderson\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cThank you Henry for a wonderful and unforgettable dining experience! Everything was delicious. You are  Incredibly talented and a wonderful person to work with. I will definitely hire you again for all my future events.\\\"\",\"author_name\":\"Nick Broughton\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cChef Henry Is amazing. We hired him to cook for an 8-person work event, and it was a great success. The variety of dishes and courses he prepared were excellent and the service was impeccable!\\\"\",\"author_name\":\"Aleesha Watkins\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\"},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a personal chef for an unforgettable private dining experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Chef Henry\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":343,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Chef_logo.png\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u24b8  Henry Simmons Personal Chef. All rights reserved\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2114,360,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2115,361,'_elementor_edit_mode','builder'),(2116,361,'_elementor_template_type','landing-page'),(2117,361,'_wp_page_template','elementor_canvas'),(2118,361,'_elementor_version','3.12.1'),(2119,361,'_elementor_pro_version','3.11.6'),(2120,361,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2121,361,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"16\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself and your friends to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Grocery Shopping\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"90\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chef\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Henry Simmons\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectet adipiscing\\u00a0elit,sed do eiusm por incunt ullat labore et dolore magna aliqua enim alld minm venim quis nostrud ercitaion ullamco labris nisio aliqup exea sint ocae cupidatat nonu old proident sunt iton culpalla officia mollit natoque massa quis enim dnec pede justo, fringilla semper nacish aene vulpte eleifend tellu noyam quam nunc tolos the old fouture.\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Chef Henry\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":349,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic2.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":351,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic1.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"60\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reviews From My Satisfied Clients\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cChef Henry prepared an exceptional birthday dinner for my wife. The food was amazing and our guests were all very impressed by his talent. We had the best time and will definitely book him again for our next dinner party.\\\"\",\"author_name\":\"Steve Anderson\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cThank you Henry for a wonderful and unforgettable dining experience! Everything was delicious. You are  Incredibly talented and a wonderful person to work with. I will definitely hire you again for all my future events.\\\"\",\"author_name\":\"Nick Broughton\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cChef Henry Is amazing. We hired him to cook for an 8-person work event, and it was a great success. The variety of dishes and courses he prepared were excellent and the service was impeccable!\\\"\",\"author_name\":\"Aleesha Watkins\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\"},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a personal chef for an unforgettable private dining experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Chef Henry\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":343,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Chef_logo.png\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u24b8  Henry Simmons Personal Chef. All rights reserved\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2122,361,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2123,362,'_elementor_edit_mode','builder'),(2124,362,'_elementor_template_type','landing-page'),(2125,362,'_wp_page_template','elementor_canvas'),(2126,362,'_elementor_version','3.12.1'),(2127,362,'_elementor_pro_version','3.11.6'),(2128,362,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2129,362,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"16\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself and your friends to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"90\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chef\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Henry Simmons\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectet adipiscing\\u00a0elit,sed do eiusm por incunt ullat labore et dolore magna aliqua enim alld minm venim quis nostrud ercitaion ullamco labris nisio aliqup exea sint ocae cupidatat nonu old proident sunt iton culpalla officia mollit natoque massa quis enim dnec pede justo, fringilla semper nacish aene vulpte eleifend tellu noyam quam nunc tolos the old fouture.\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Chef Henry\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":349,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic2.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":351,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic1.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"60\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reviews From My Satisfied Clients\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cChef Henry prepared an exceptional birthday dinner for my wife. The food was amazing and our guests were all very impressed by his talent. We had the best time and will definitely book him again for our next dinner party.\\\"\",\"author_name\":\"Steve Anderson\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cThank you Henry for a wonderful and unforgettable dining experience! Everything was delicious. You are  Incredibly talented and a wonderful person to work with. I will definitely hire you again for all my future events.\\\"\",\"author_name\":\"Nick Broughton\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cChef Henry Is amazing. We hired him to cook for an 8-person work event, and it was a great success. The variety of dishes and courses he prepared were excellent and the service was impeccable!\\\"\",\"author_name\":\"Aleesha Watkins\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\"},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a personal chef for an unforgettable private dining experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Chef Henry\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":343,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Chef_logo.png\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u24b8  Henry Simmons Personal Chef. All rights reserved\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2130,362,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2141,364,'_wp_attached_file','2023/04/800x800-Fl-copy-2-1.webp'),(2142,364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2023/04/800x800-Fl-copy-2-1.webp\";s:8:\"filesize\";i:63790;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"800x800-Fl-copy-2-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11088;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"800x800-Fl-copy-2-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3646;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"800x800-Fl-copy-2-1-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:69926;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2143,365,'_wp_attached_file','2023/04/800x400-1.webp'),(2144,365,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:22:\"2023/04/800x400-1.webp\";s:8:\"filesize\";i:15478;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"800x400-1-300x150.webp\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"800x400-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4026;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"800x400-1-768x384.webp\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18358;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2145,366,'_wp_attached_file','2023/04/800x800-1.webp'),(2146,366,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/04/800x800-1.webp\";s:8:\"filesize\";i:39106;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"800x800-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10598;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"800x800-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3766;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"800x800-1-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:44834;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2147,367,'_elementor_edit_mode','builder'),(2148,367,'_elementor_template_type','landing-page'),(2149,367,'_wp_page_template','elementor_canvas'),(2150,367,'_elementor_version','3.12.1'),(2151,367,'_elementor_pro_version','3.11.6'),(2152,367,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2153,367,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"16\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself and your friends to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"90\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chef\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Henry Simmons\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectet adipiscing\\u00a0elit,sed do eiusm por incunt ullat labore et dolore magna aliqua enim alld minm venim quis nostrud ercitaion ullamco labris nisio aliqup exea sint ocae cupidatat nonu old proident sunt iton culpalla officia mollit natoque massa quis enim dnec pede justo, fringilla semper nacish aene vulpte eleifend tellu noyam quam nunc tolos the old fouture.\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Chef Henry\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":349,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic2.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":351,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic1.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"60\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reviews From My Satisfied Clients\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cChef Henry prepared an exceptional birthday dinner for my wife. The food was amazing and our guests were all very impressed by his talent. We had the best time and will definitely book him again for our next dinner party.\\\"\",\"author_name\":\"Steve Anderson\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cThank you Henry for a wonderful and unforgettable dining experience! Everything was delicious. You are  Incredibly talented and a wonderful person to work with. I will definitely hire you again for all my future events.\\\"\",\"author_name\":\"Nick Broughton\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cChef Henry Is amazing. We hired him to cook for an 8-person work event, and it was a great success. The variety of dishes and courses he prepared were excellent and the service was impeccable!\\\"\",\"author_name\":\"Aleesha Watkins\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\"},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a personal chef for an unforgettable private dining experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Chef Henry\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":343,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Chef_logo.png\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u24b8  Henry Simmons Personal Chef. All rights reserved\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2154,367,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2155,368,'_elementor_edit_mode','builder'),(2156,368,'_elementor_template_type','landing-page'),(2157,368,'_wp_page_template','elementor_canvas'),(2158,368,'_elementor_version','3.12.1'),(2159,368,'_elementor_pro_version','3.11.6'),(2160,368,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2161,368,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"16\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself and your friends to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"90\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chef\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Henry Simmons\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectet adipiscing\\u00a0elit,sed do eiusm por incunt ullat labore et dolore magna aliqua enim alld minm venim quis nostrud ercitaion ullamco labris nisio aliqup exea sint ocae cupidatat nonu old proident sunt iton culpalla officia mollit natoque massa quis enim dnec pede justo, fringilla semper nacish aene vulpte eleifend tellu noyam quam nunc tolos the old fouture.\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Chef Henry\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":349,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic2.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":350,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":351,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/working_chef_pic1.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"60\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reviews From My Satisfied Clients\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cChef Henry prepared an exceptional birthday dinner for my wife. The food was amazing and our guests were all very impressed by his talent. We had the best time and will definitely book him again for our next dinner party.\\\"\",\"author_name\":\"Steve Anderson\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cThank you Henry for a wonderful and unforgettable dining experience! Everything was delicious. You are  Incredibly talented and a wonderful person to work with. I will definitely hire you again for all my future events.\\\"\",\"author_name\":\"Nick Broughton\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cChef Henry Is amazing. We hired him to cook for an 8-person work event, and it was a great success. The variety of dishes and courses he prepared were excellent and the service was impeccable!\\\"\",\"author_name\":\"Aleesha Watkins\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\"},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a personal chef for an unforgettable private dining experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Chef Henry\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":343,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Chef_logo.png\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u24b8  Henry Simmons Personal Chef. All rights reserved\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2162,368,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2163,369,'_elementor_edit_mode','builder'),(2164,369,'_elementor_template_type','landing-page'),(2165,369,'_wp_page_template','elementor_canvas'),(2166,369,'_elementor_version','3.12.1'),(2167,369,'_elementor_pro_version','3.11.6'),(2168,369,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2169,369,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"90\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"60\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\"},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2170,369,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2181,371,'_elementor_edit_mode','builder'),(2182,371,'_elementor_template_type','landing-page'),(2183,371,'_wp_page_template','elementor_canvas'),(2184,371,'_elementor_version','3.12.1'),(2185,371,'_elementor_pro_version','3.11.6'),(2186,371,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2187,371,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"90\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"60\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\"},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2188,371,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2189,372,'_elementor_edit_mode','builder'),(2190,372,'_elementor_template_type','landing-page'),(2191,372,'_wp_page_template','elementor_canvas'),(2192,372,'_elementor_version','3.12.1'),(2193,372,'_elementor_pro_version','3.11.6'),(2194,372,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2195,372,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"90\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"60\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\"},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2196,372,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2197,373,'_elementor_edit_mode','builder'),(2198,373,'_elementor_template_type','landing-page'),(2199,373,'_wp_page_template','elementor_canvas'),(2200,373,'_elementor_version','3.12.1'),(2201,373,'_elementor_pro_version','3.11.6'),(2202,373,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2203,373,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2204,373,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2206,374,'_elementor_edit_mode','builder'),(2207,374,'_elementor_template_type','landing-page'),(2208,374,'_wp_page_template','elementor_canvas'),(2209,374,'_elementor_version','3.12.1'),(2210,374,'_elementor_pro_version','3.11.6'),(2211,374,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2212,374,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2213,374,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2214,375,'_elementor_edit_mode','builder'),(2215,375,'_elementor_template_type','landing-page'),(2216,375,'_wp_page_template','elementor_canvas'),(2217,375,'_elementor_version','3.12.1'),(2218,375,'_elementor_pro_version','3.11.6'),(2219,375,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2220,375,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2221,375,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2222,376,'_elementor_edit_mode','builder'),(2223,376,'_elementor_template_type','landing-page'),(2224,376,'_wp_page_template','elementor_canvas'),(2225,376,'_elementor_version','3.12.1'),(2226,376,'_elementor_pro_version','3.11.6'),(2227,376,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2228,376,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2229,376,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2231,377,'_elementor_edit_mode','builder'),(2232,377,'_elementor_template_type','landing-page'),(2233,377,'_wp_page_template','elementor_canvas'),(2234,377,'_elementor_version','3.12.1'),(2235,377,'_elementor_pro_version','3.11.6'),(2236,377,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2237,377,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2238,377,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2239,378,'_elementor_edit_mode','builder'),(2240,378,'_elementor_template_type','landing-page'),(2241,378,'_wp_page_template','elementor_canvas'),(2242,378,'_elementor_version','3.12.1'),(2243,378,'_elementor_pro_version','3.11.6'),(2244,378,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2245,378,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"16\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"44\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2246,378,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2247,379,'_elementor_edit_mode','builder'),(2248,379,'_elementor_template_type','landing-page'),(2249,379,'_wp_page_template','elementor_canvas'),(2250,379,'_elementor_version','3.12.1'),(2251,379,'_elementor_pro_version','3.11.6'),(2252,379,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}');
INSERT INTO `wp_postmeta` VALUES (2253,379,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#252734\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2254,379,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2256,380,'_elementor_edit_mode','builder'),(2257,380,'_elementor_template_type','landing-page'),(2258,380,'_wp_page_template','elementor_canvas'),(2259,380,'_elementor_version','3.12.1'),(2260,380,'_elementor_pro_version','3.11.6'),(2261,380,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2262,380,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#252734\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2263,380,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2264,381,'_elementor_edit_mode','builder'),(2265,381,'_elementor_template_type','landing-page'),(2266,381,'_wp_page_template','elementor_canvas'),(2267,381,'_elementor_version','3.12.1'),(2268,381,'_elementor_pro_version','3.11.6'),(2269,381,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2270,381,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#252734\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2271,381,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2272,382,'_elementor_edit_mode','builder'),(2273,382,'_elementor_template_type','landing-page'),(2274,382,'_wp_page_template','elementor_canvas'),(2275,382,'_elementor_version','3.12.1'),(2276,382,'_elementor_pro_version','3.11.6'),(2277,382,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2278,382,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#252734\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2279,382,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2292,384,'_elementor_edit_mode','builder'),(2293,384,'_elementor_template_type','landing-page'),(2294,384,'_wp_page_template','elementor_canvas'),(2295,384,'_elementor_version','3.12.1'),(2296,384,'_elementor_pro_version','3.11.6'),(2297,384,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2298,384,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#252734\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2299,384,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2300,385,'_elementor_edit_mode','builder'),(2301,385,'_elementor_template_type','landing-page'),(2302,385,'_wp_page_template','elementor_canvas'),(2303,385,'_elementor_version','3.12.1'),(2304,385,'_elementor_pro_version','3.11.6'),(2305,385,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2306,385,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28fd4b34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#252734\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2307,385,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2308,386,'_elementor_edit_mode','builder'),(2309,386,'_elementor_template_type','landing-page'),(2310,386,'_wp_page_template','elementor_canvas'),(2311,386,'_elementor_version','3.12.1'),(2312,386,'_elementor_pro_version','3.11.6'),(2313,386,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2314,386,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2315,386,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2326,388,'_elementor_edit_mode','builder'),(2327,388,'_elementor_template_type','landing-page'),(2328,388,'_wp_page_template','elementor_canvas'),(2329,388,'_elementor_version','3.12.1'),(2330,388,'_elementor_pro_version','3.11.6'),(2331,388,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2332,388,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2333,388,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2334,389,'_elementor_edit_mode','builder'),(2335,389,'_elementor_template_type','landing-page'),(2336,389,'_wp_page_template','elementor_canvas'),(2337,389,'_elementor_version','3.12.1'),(2338,389,'_elementor_pro_version','3.11.6'),(2339,389,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2340,389,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Call 991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2341,389,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2342,390,'_elementor_edit_mode','builder'),(2343,390,'_elementor_template_type','landing-page'),(2344,390,'_wp_page_template','elementor_canvas'),(2345,390,'_elementor_version','3.12.1'),(2346,390,'_elementor_pro_version','3.11.6'),(2347,390,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2348,390,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2349,390,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2352,391,'_elementor_edit_mode','builder'),(2353,391,'_elementor_template_type','landing-page'),(2354,391,'_wp_page_template','elementor_canvas'),(2355,391,'_elementor_version','3.12.1'),(2356,391,'_elementor_pro_version','3.11.6'),(2357,391,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2358,391,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2359,391,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2361,392,'_elementor_edit_mode','builder'),(2362,392,'_elementor_template_type','landing-page'),(2363,392,'_wp_page_template','elementor_canvas'),(2364,392,'_elementor_version','3.12.1'),(2365,392,'_elementor_pro_version','3.11.6'),(2366,392,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}');
INSERT INTO `wp_postmeta` VALUES (2367,392,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2368,392,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2370,393,'_elementor_edit_mode','builder'),(2371,393,'_elementor_template_type','landing-page'),(2372,393,'_wp_page_template','elementor_canvas'),(2373,393,'_elementor_version','3.12.1'),(2374,393,'_elementor_pro_version','3.11.6'),(2375,393,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2376,393,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2377,393,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2381,394,'_wp_attached_file','2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg'),(2382,394,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:377;s:6:\"height\";i:383;s:4:\"file\";s:42:\"2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg\";s:8:\"filesize\";i:111552;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13852;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"jon-tyson-QL0FAxaq2z0-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4704;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2393,396,'_elementor_edit_mode','builder'),(2394,396,'_elementor_template_type','landing-page'),(2395,396,'_wp_page_template','elementor_canvas'),(2396,396,'_elementor_version','3.12.1'),(2397,396,'_elementor_pro_version','3.11.6'),(2398,396,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2399,396,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2400,396,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2401,397,'_elementor_edit_mode','builder'),(2402,397,'_elementor_template_type','landing-page'),(2403,397,'_wp_page_template','elementor_canvas'),(2404,397,'_elementor_version','3.12.1'),(2405,397,'_elementor_pro_version','3.11.6'),(2406,397,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2407,397,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":345,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon1.svg\"},\"library\":\"svg\"},\"title_text\":\"Business Strategy\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":346,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon2.svg\"},\"library\":\"svg\"},\"title_text\":\"Web Design\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":347,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon3.svg\"},\"library\":\"svg\"},\"title_text\":\"Prep &amp; Cooking\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":348,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/service_icon4.svg\"},\"library\":\"svg\"},\"title_text\":\"Serving &amp; Cleaning\",\"description_text\":\"Lorem ipsum dolor sloit amet cons ctet adipiscing\\u00a0elit seed dlao eiusmr ncidunt labore et dolore magna. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":353,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic1.jpg\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":354,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/call-to-action-pic2.jpg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2408,397,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2409,398,'_elementor_edit_mode','builder'),(2410,398,'_elementor_template_type','landing-page'),(2411,398,'_wp_page_template','elementor_canvas'),(2412,398,'_elementor_version','3.12.1'),(2413,398,'_elementor_pro_version','3.11.6'),(2414,398,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2415,398,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2416,398,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2419,399,'_elementor_edit_mode','builder'),(2420,399,'_elementor_template_type','landing-page'),(2421,399,'_wp_page_template','elementor_canvas'),(2422,399,'_elementor_version','3.12.1'),(2423,399,'_elementor_pro_version','3.11.6'),(2424,399,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2425,399,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2426,399,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2428,400,'_elementor_edit_mode','builder'),(2429,400,'_elementor_template_type','landing-page'),(2430,400,'_wp_page_template','elementor_canvas'),(2431,400,'_elementor_version','3.12.1'),(2432,400,'_elementor_pro_version','3.11.6'),(2433,400,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2434,400,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":\"260\",\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 What The Hell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42f93df3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"id\":355,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/insta-icon-1.svg\"},\"library\":\"svg\"},\"_id\":\"e4fd53e\"},{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9f5badf\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8c814c1\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"hover_primary_color\":\"rgba(255, 255, 255, 0)\",\"hover_secondary_color\":\"#FFAF29\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2435,400,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2437,401,'_elementor_edit_mode','builder'),(2438,401,'_elementor_template_type','landing-page'),(2439,401,'_wp_page_template','elementor_canvas'),(2440,401,'_elementor_version','3.12.1'),(2441,401,'_elementor_pro_version','3.11.6'),(2442,401,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2443,401,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2444,401,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2447,402,'_elementor_edit_mode','builder'),(2448,402,'_elementor_template_type','landing-page'),(2449,402,'_wp_page_template','elementor_canvas'),(2450,402,'_elementor_version','3.12.1'),(2451,402,'_elementor_pro_version','3.11.6'),(2452,402,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2453,402,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2454,402,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2455,403,'_elementor_edit_mode','builder'),(2456,403,'_elementor_template_type','landing-page'),(2457,403,'_wp_page_template','elementor_canvas'),(2458,403,'_elementor_version','3.12.1'),(2459,403,'_elementor_pro_version','3.11.6'),(2460,403,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2461,403,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"book a demo\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a demo\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2462,403,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2463,404,'_elementor_edit_mode','builder'),(2464,404,'_elementor_template_type','landing-page'),(2465,404,'_wp_page_template','elementor_canvas'),(2466,404,'_elementor_version','3.12.1'),(2467,404,'_elementor_pro_version','3.11.6'),(2468,404,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2469,404,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2470,404,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2483,406,'_elementor_edit_mode','builder'),(2484,406,'_elementor_template_type','landing-page'),(2485,406,'_wp_page_template','elementor_canvas'),(2486,406,'_elementor_version','3.12.1'),(2487,406,'_elementor_pro_version','3.11.6'),(2488,406,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}');
INSERT INTO `wp_postmeta` VALUES (2489,406,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2490,406,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2491,407,'_elementor_edit_mode','builder'),(2492,407,'_elementor_template_type','landing-page'),(2493,407,'_wp_page_template','elementor_canvas'),(2494,407,'_elementor_version','3.12.1'),(2495,407,'_elementor_pro_version','3.11.6'),(2496,407,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2497,407,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\"},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\"},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\"},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2498,407,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2499,408,'_elementor_edit_mode','builder'),(2500,408,'_elementor_template_type','landing-page'),(2501,408,'_wp_page_template','elementor_canvas'),(2502,408,'_elementor_version','3.12.1'),(2503,408,'_elementor_pro_version','3.11.6'),(2504,408,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2505,408,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2506,408,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2509,409,'_elementor_edit_mode','builder'),(2510,409,'_elementor_template_type','landing-page'),(2511,409,'_wp_page_template','elementor_canvas'),(2512,409,'_elementor_version','3.12.1'),(2513,409,'_elementor_pro_version','3.11.6'),(2514,409,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2515,409,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2516,409,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2518,410,'_elementor_edit_mode','builder'),(2519,410,'_elementor_template_type','landing-page'),(2520,410,'_wp_page_template','elementor_canvas'),(2521,410,'_elementor_version','3.12.1'),(2522,410,'_elementor_pro_version','3.11.6'),(2523,410,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2524,410,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2525,410,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2527,411,'_elementor_edit_mode','builder'),(2528,411,'_elementor_template_type','landing-page'),(2529,411,'_wp_page_template','elementor_canvas'),(2530,411,'_elementor_version','3.12.1'),(2531,411,'_elementor_pro_version','3.11.6'),(2532,411,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2533,411,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2534,411,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2549,413,'_elementor_edit_mode','builder'),(2550,413,'_elementor_template_type','landing-page'),(2551,413,'_wp_page_template','elementor_canvas'),(2552,413,'_elementor_version','3.12.1'),(2553,413,'_elementor_pro_version','3.11.6'),(2554,413,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2555,413,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2556,413,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2558,414,'_elementor_edit_mode','builder'),(2559,414,'_elementor_template_type','landing-page'),(2560,414,'_wp_page_template','elementor_canvas'),(2561,414,'_elementor_version','3.12.1'),(2562,414,'_elementor_pro_version','3.11.6'),(2563,414,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2564,414,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2565,414,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2567,415,'_elementor_edit_mode','builder'),(2568,415,'_elementor_template_type','landing-page'),(2569,415,'_wp_page_template','elementor_canvas'),(2570,415,'_elementor_version','3.12.1'),(2571,415,'_elementor_pro_version','3.11.6'),(2572,415,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2573,415,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2574,415,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2578,416,'_wp_attached_file','2023/04/WTH-10.webp'),(2579,416,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2023/04/WTH-10.webp\";s:8:\"filesize\";i:39442;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"WTH-10-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18874;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"WTH-10-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6974;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2580,417,'_wp_attached_file','2023/04/WTH-9.webp'),(2581,417,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2023/04/WTH-9.webp\";s:8:\"filesize\";i:20518;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"WTH-9-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"WTH-9-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2582,418,'_wp_attached_file','2023/04/WTH-8.webp'),(2583,418,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2023/04/WTH-8.webp\";s:8:\"filesize\";i:21706;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"WTH-8-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9960;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"WTH-8-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3788;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2584,419,'_elementor_edit_mode','builder'),(2585,419,'_elementor_template_type','landing-page'),(2586,419,'_wp_page_template','elementor_canvas'),(2587,419,'_elementor_version','3.12.1'),(2588,419,'_elementor_pro_version','3.11.6'),(2589,419,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2590,419,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2591,419,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2593,420,'_elementor_edit_mode','builder'),(2594,420,'_elementor_template_type','landing-page'),(2595,420,'_wp_page_template','elementor_canvas'),(2596,420,'_elementor_version','3.12.1'),(2597,420,'_elementor_pro_version','3.11.6'),(2598,420,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2599,420,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2600,420,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2602,421,'_elementor_edit_mode','builder'),(2603,421,'_elementor_template_type','landing-page'),(2604,421,'_wp_page_template','elementor_canvas'),(2605,421,'_elementor_version','3.12.1'),(2606,421,'_elementor_pro_version','3.11.6'),(2607,421,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}');
INSERT INTO `wp_postmeta` VALUES (2608,421,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2609,421,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2612,422,'_elementor_edit_mode','builder'),(2613,422,'_elementor_template_type','landing-page'),(2614,422,'_wp_page_template','elementor_canvas'),(2615,422,'_elementor_version','3.12.1'),(2616,422,'_elementor_pro_version','3.11.6'),(2617,422,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2618,422,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2619,422,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2620,423,'_elementor_edit_mode','builder'),(2621,423,'_elementor_template_type','landing-page'),(2622,423,'_wp_page_template','elementor_canvas'),(2623,423,'_elementor_version','3.12.1'),(2624,423,'_elementor_pro_version','3.11.6'),(2625,423,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2626,423,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"7247e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":366,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2627,423,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2628,424,'_elementor_edit_mode','builder'),(2629,424,'_elementor_template_type','landing-page'),(2630,424,'_wp_page_template','elementor_canvas'),(2631,424,'_elementor_version','3.12.1'),(2632,424,'_elementor_pro_version','3.11.6'),(2633,424,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2634,424,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2635,424,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2638,425,'_elementor_edit_mode','builder'),(2639,425,'_elementor_template_type','landing-page'),(2640,425,'_wp_page_template','elementor_canvas'),(2641,425,'_elementor_version','3.12.1'),(2642,425,'_elementor_pro_version','3.11.6'),(2643,425,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2644,425,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2645,425,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2647,426,'_elementor_edit_mode','builder'),(2648,426,'_elementor_template_type','landing-page'),(2649,426,'_wp_page_template','elementor_canvas'),(2650,426,'_elementor_version','3.12.1'),(2651,426,'_elementor_pro_version','3.11.6'),(2652,426,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2653,426,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2654,426,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2656,427,'_elementor_edit_mode','builder'),(2657,427,'_elementor_template_type','landing-page'),(2658,427,'_wp_page_template','elementor_canvas'),(2659,427,'_elementor_version','3.12.1'),(2660,427,'_elementor_pro_version','3.11.6'),(2661,427,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2662,427,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2663,427,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2667,428,'_elementor_edit_mode','builder'),(2668,428,'_elementor_template_type','landing-page'),(2669,428,'_wp_page_template','elementor_canvas'),(2670,428,'_elementor_version','3.12.1'),(2671,428,'_elementor_pro_version','3.11.6'),(2672,428,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2673,428,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2674,428,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2676,429,'_elementor_edit_mode','builder'),(2677,429,'_elementor_template_type','landing-page'),(2678,429,'_wp_page_template','elementor_canvas'),(2679,429,'_elementor_version','3.12.1'),(2680,429,'_elementor_pro_version','3.11.6'),(2681,429,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2682,429,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2683,429,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2685,430,'_elementor_edit_mode','builder'),(2686,430,'_elementor_template_type','landing-page'),(2687,430,'_wp_page_template','elementor_canvas'),(2688,430,'_elementor_version','3.12.1'),(2689,430,'_elementor_pro_version','3.11.6'),(2690,430,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2691,430,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2692,430,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2696,431,'_wp_attached_file','2023/04/WTH-13.webp'),(2697,431,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2023/04/WTH-13.webp\";s:8:\"filesize\";i:16814;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"WTH-13-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"WTH-13-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3068;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2698,432,'_wp_attached_file','2023/04/WTH-12.webp'),(2699,432,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2023/04/WTH-12.webp\";s:8:\"filesize\";i:15304;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"WTH-12-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7426;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"WTH-12-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3026;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2700,433,'_wp_attached_file','2023/04/WTH-11.webp'),(2701,433,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2023/04/WTH-11.webp\";s:8:\"filesize\";i:38416;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"WTH-11-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10554;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"WTH-11-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3626;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2702,434,'_elementor_edit_mode','builder'),(2703,434,'_elementor_template_type','landing-page'),(2704,434,'_wp_page_template','elementor_canvas'),(2705,434,'_elementor_version','3.12.1'),(2706,434,'_elementor_pro_version','3.11.6'),(2707,434,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2708,434,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2709,434,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2711,435,'_elementor_edit_mode','builder'),(2712,435,'_elementor_template_type','landing-page'),(2713,435,'_wp_page_template','elementor_canvas'),(2714,435,'_elementor_version','3.12.1'),(2715,435,'_elementor_pro_version','3.11.6'),(2716,435,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}');
INSERT INTO `wp_postmeta` VALUES (2717,435,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b0fbaf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":365,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x400-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2718,435,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2720,436,'_elementor_edit_mode','builder'),(2721,436,'_elementor_template_type','landing-page'),(2722,436,'_wp_page_template','elementor_canvas'),(2723,436,'_elementor_version','3.12.1'),(2724,436,'_elementor_pro_version','3.11.6'),(2725,436,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2726,436,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2727,436,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2730,437,'_elementor_edit_mode','builder'),(2731,437,'_elementor_template_type','landing-page'),(2732,437,'_wp_page_template','elementor_canvas'),(2733,437,'_elementor_version','3.12.1'),(2734,437,'_elementor_pro_version','3.11.6'),(2735,437,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2736,437,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2737,437,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2738,438,'_elementor_edit_mode','builder'),(2739,438,'_elementor_template_type','landing-page'),(2740,438,'_wp_page_template','elementor_canvas'),(2741,438,'_elementor_version','3.12.1'),(2742,438,'_elementor_pro_version','3.11.6'),(2743,438,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2744,438,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2745,438,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2746,439,'_elementor_edit_mode','builder'),(2747,439,'_elementor_template_type','landing-page'),(2748,439,'_wp_page_template','elementor_canvas'),(2749,439,'_elementor_version','3.12.1'),(2750,439,'_elementor_pro_version','3.11.6'),(2751,439,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2752,439,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2753,439,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2755,440,'_elementor_edit_mode','builder'),(2756,440,'_elementor_template_type','landing-page'),(2757,440,'_wp_page_template','elementor_canvas'),(2758,440,'_elementor_version','3.12.1'),(2759,440,'_elementor_pro_version','3.11.6'),(2760,440,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2761,440,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2762,440,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2763,441,'_elementor_edit_mode','builder'),(2764,441,'_elementor_template_type','landing-page'),(2765,441,'_wp_page_template','elementor_canvas'),(2766,441,'_elementor_version','3.12.1'),(2767,441,'_elementor_pro_version','3.11.6'),(2768,441,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2769,441,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2770,441,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2771,442,'_elementor_edit_mode','builder'),(2772,442,'_elementor_template_type','landing-page'),(2773,442,'_wp_page_template','elementor_canvas'),(2774,442,'_elementor_version','3.12.1'),(2775,442,'_elementor_pro_version','3.11.6'),(2776,442,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2777,442,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2778,442,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2781,338,'__elementor_forms_snapshot','[{\"id\":\"31582075\",\"name\":\"Booking Form\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"Full Name\"},{\"id\":\"email\",\"type\":\"email\",\"label\":\"Email Address\"},{\"id\":\"field_1f3565c\",\"type\":\"tel\",\"label\":\"Phone Number\"}]}]'),(2793,444,'_elementor_edit_mode','builder'),(2794,444,'_elementor_template_type','landing-page'),(2795,444,'_wp_page_template','elementor_canvas'),(2796,444,'_elementor_version','3.12.1'),(2797,444,'_elementor_pro_version','3.11.6'),(2798,444,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2799,444,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2800,444,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2802,445,'_elementor_edit_mode','builder'),(2803,445,'_elementor_template_type','landing-page'),(2804,445,'_wp_page_template','elementor_canvas'),(2805,445,'_elementor_version','3.12.1'),(2806,445,'_elementor_pro_version','3.11.6'),(2807,445,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2808,445,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2809,445,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2811,446,'_elementor_edit_mode','builder'),(2812,446,'_elementor_template_type','landing-page'),(2813,446,'_wp_page_template','elementor_canvas'),(2814,446,'_elementor_version','3.12.1'),(2815,446,'_elementor_pro_version','3.11.6'),(2816,446,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2817,446,'_elementor_data','[{\"id\":\"76638294\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"22ed5644\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"427727de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"3b2ad334\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3052fb3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"453e1d86\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"61e08a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"2798f292\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"263387f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"1e921070\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7b16d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"49a540ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"77dcbc46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6de13859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"d0c1c53\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"7cf40501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb71698\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"elementskit-wp-forms\"},{\"id\":\"31582075\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"109372c2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"4df58262\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"1ea313cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69305a26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"49c53f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dffac3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"386522f\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2548b16b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"28d1928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4b06fa80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"42a6bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"71681073\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"530b4afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48c8c208\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"598143cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"43b19879\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7cddbb0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"4032f848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"620ce94a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1bd10fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"109956e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29eeba56\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38a282fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79fd533\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"422fc4f\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"4dec1706\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"36310a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"22094a9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5eac2211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b4b3f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b6d3b3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2758acbb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3923bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"181a781a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6c131a0e\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"21b1b1e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74622fb6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49f9c069\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"3d2abde7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3a6b47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5509bcbb\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"0354e81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a066a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb0ee9f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d2851c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af53006\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"9d98c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"543694c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e00c7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"eda692b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bc9f176\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"707c484\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"641bbf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"d3b2e78\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d64ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"627266e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4908cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd13f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"140477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f058f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"21e2218\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"ba893ad\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7ffc57c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"380821f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57c9492c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a018bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd51f64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16e0b179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d289db6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"50a0986f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60cdc71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347cec2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f292473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3130a003\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"660abff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7efb420a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2818,446,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2820,338,'_elementor_controls_usage','a:12:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:5;s:5:\"align\";i:3;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:11:{s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;s:14:\"_element_width\";i:2;s:21:\"_element_width_tablet\";i:2;s:21:\"_element_width_mobile\";i:2;s:21:\"_element_custom_width\";i:2;s:9:\"_position\";i:2;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:2;s:9:\"_offset_y\";i:2;s:21:\"_offset_orientation_v\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:32;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:21:\"space_between_widgets\";i:19;s:12:\"_inline_size\";i:15;s:16:\"content_position\";i:15;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:16:\"background_color\";i:6;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:14;s:11:\"_element_id\";i:1;s:6:\"margin\";i:12;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:15:\"animation_delay\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:3;s:5:\"align\";i:3;s:11:\"icon_indent\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:19:{s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:25:\"button_hover_border_color\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:13:\"border_radius\";i:3;s:12:\"text_padding\";i:3;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:3;s:21:\"typography_font_style\";i:1;s:26:\"typography_text_decoration\";i:1;s:25:\"typography_letter_spacing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:12:{s:13:\"content_width\";i:12;s:3:\"gap\";i:12;s:6:\"height\";i:6;s:13:\"custom_height\";i:8;s:16:\"content_position\";i:4;s:6:\"_title\";i:10;s:8:\"html_tag\";i:2;s:15:\"column_position\";i:5;s:6:\"layout\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:5;s:16:\"background_image\";i:2;s:21:\"background_attachment\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:14;s:6:\"margin\";i:10;s:7:\"z_index\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:12;s:11:\"header_size\";i:4;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:11:\"title_color\";i:12;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:25:\"typography_text_transform\";i:9;s:21:\"typography_font_style\";i:7;s:26:\"typography_text_decoration\";i:7;s:22:\"typography_line_height\";i:10;s:25:\"typography_letter_spacing\";i:7;s:23:\"typography_word_spacing\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:10;s:8:\"_z_index\";i:1;}s:15:\"section_effects\";a:4:{s:10:\"_animation\";i:6;s:18:\"animation_duration\";i:2;s:16:\"_animation_delay\";i:4;s:17:\"_animation_tablet\";i:2;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:4;s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:21:\"typography_font_style\";i:4;s:26:\"typography_text_decoration\";i:4;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:1;s:17:\"_animation_tablet\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:10;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:4;s:10:\"icon_space\";i:4;s:9:\"icon_size\";i:4;}s:17:\"section_style_box\";a:1:{s:10:\"text_align\";i:4;}s:21:\"section_style_content\";a:21:{s:18:\"title_bottom_space\";i:4;s:11:\"title_color\";i:4;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:31:\"title_typography_text_transform\";i:4;s:27:\"title_typography_font_style\";i:4;s:32:\"title_typography_text_decoration\";i:4;s:28:\"title_typography_line_height\";i:4;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:4;s:34:\"description_typography_font_weight\";i:4;s:37:\"description_typography_text_transform\";i:4;s:33:\"description_typography_font_style\";i:4;s:38:\"description_typography_text_decoration\";i:4;s:34:\"description_typography_line_height\";i:4;s:31:\"title_typography_letter_spacing\";i:4;s:37:\"description_typography_letter_spacing\";i:4;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:7:\"divider\";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:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;s:5:\"color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:3;s:5:\"title\";i:3;s:13:\"ending_number\";i:3;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:7:{s:12:\"number_color\";i:3;s:28:\"typography_number_typography\";i:3;s:29:\"typography_number_font_family\";i:3;s:27:\"typography_number_font_size\";i:3;s:29:\"typography_number_font_weight\";i:3;s:29:\"typography_number_line_height\";i:3;s:30:\"typography_number_word_spacing\";i:3;}}}}}'),(2822,447,'_elementor_edit_mode','builder'),(2823,447,'_elementor_template_type','landing-page'),(2824,448,'_elementor_edit_mode','builder'),(2825,448,'_elementor_template_type','landing-page'),(2826,449,'_elementor_edit_mode','builder'),(2827,449,'_elementor_template_type','landing-page'),(2828,447,'_wp_page_template','elementor_canvas'),(2829,447,'_elementor_version','3.12.1'),(2830,447,'_elementor_pro_version','3.11.6'),(2831,450,'_elementor_edit_mode','builder'),(2832,450,'_elementor_template_type','landing-page'),(2833,450,'_wp_page_template','elementor_canvas'),(2834,450,'_elementor_version','3.12.1'),(2835,450,'_elementor_pro_version','3.11.6'),(2836,447,'ekit_post_views_count','1'),(2837,447,'_edit_lock','1680781435:1'),(2838,451,'_elementor_edit_mode','builder'),(2839,451,'_elementor_template_type','page'),(2840,451,'_elementor_version','3.12.1'),(2841,451,'_elementor_pro_version','3.11.6'),(2842,452,'_elementor_edit_mode','builder'),(2843,452,'_elementor_template_type','page'),(2844,452,'_elementor_version','3.12.1'),(2845,452,'_elementor_pro_version','3.11.6'),(2846,451,'_wp_page_template','elementor_canvas'),(2847,451,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}');
INSERT INTO `wp_postmeta` VALUES (2848,451,'_elementor_data','[{\"id\":\"743340a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"225df739\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"74d19362\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"1f77fa2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"531d63f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1f3a6dd9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"69fab1c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"67970b98\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"f9ae836\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"54ef4276\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b312963\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"1050edfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"140fba22\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b01b74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"19da04e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"5f4e1aaf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c10cd68\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"elementskit-wp-forms\"},{\"id\":\"4dd2cf80\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"237e5e65\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"786f721\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"6617e4f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549a7d03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"556460ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19ad9205\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e0b126c\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50591027\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"2a50c5de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4dd27d05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"2d82dabb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"11554db5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"4c1386bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3d745799\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"3bf25703\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"68261dd6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"67e8af11\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"1569c46e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2745018e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"608525d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"78bab3d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49cc255d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2c4f4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"535b5a35\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2e1a3832\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"61581cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"2f40b4e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5ab27deb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"174cd2f1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"7c0f7eef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3334231c\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"43d03a6b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2e726d1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e5775ff\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4594c3ca\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"40a2a98c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddc27db\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6056c312\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"551a9e56\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f59f745\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"53f0fce2\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4e9965fd\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32bebd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7330b18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a230a05\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24a76142\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ae768f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7d3e36c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"241733b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ca08014\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"7787bbc7\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"2e0e5915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"29a6f24d\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f35d50\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"382077fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7be6616f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"7eb354cf\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"54adbfe2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"379f3ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"24377024\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"4a97d21\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3cd40a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e504c1b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"1fad82c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a16bac5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1892d601\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ddfe6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43feb868\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d6f08bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4fbf23a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"292b04e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5bd7a17b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cfaac7\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"39e68705\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6020d5b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63f2bc28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb08bb5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2849,453,'_elementor_edit_mode','builder'),(2850,453,'_elementor_template_type','page'),(2851,453,'_elementor_version','3.12.1'),(2852,453,'_elementor_pro_version','3.11.6'),(2853,453,'_wp_page_template','elementor_canvas'),(2854,453,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2855,453,'_elementor_data','[{\"id\":\"743340a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"225df739\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"74d19362\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"1f77fa2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"531d63f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1f3a6dd9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"69fab1c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"67970b98\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"f9ae836\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"54ef4276\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b312963\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"1050edfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"140fba22\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b01b74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"19da04e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"5f4e1aaf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c10cd68\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"elementskit-wp-forms\"},{\"id\":\"4dd2cf80\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"237e5e65\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"786f721\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"6617e4f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549a7d03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"556460ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19ad9205\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e0b126c\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50591027\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"2a50c5de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4dd27d05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"2d82dabb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"11554db5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"4c1386bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3d745799\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"3bf25703\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"68261dd6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"67e8af11\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"1569c46e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2745018e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"608525d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"78bab3d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49cc255d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2c4f4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"535b5a35\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2e1a3832\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"61581cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"2f40b4e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5ab27deb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"174cd2f1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"7c0f7eef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3334231c\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"43d03a6b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2e726d1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e5775ff\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4594c3ca\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"40a2a98c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddc27db\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6056c312\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"551a9e56\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f59f745\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"53f0fce2\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4e9965fd\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32bebd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7330b18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a230a05\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24a76142\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ae768f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7d3e36c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"241733b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ca08014\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"7787bbc7\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"2e0e5915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"29a6f24d\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f35d50\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"382077fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7be6616f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"7eb354cf\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"54adbfe2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"379f3ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"24377024\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"4a97d21\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3cd40a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e504c1b\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"1fad82c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a16bac5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1892d601\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ddfe6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43feb868\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d6f08bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4fbf23a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"292b04e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5bd7a17b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cfaac7\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"39e68705\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6020d5b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63f2bc28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb08bb5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2856,451,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2857,451,'_elementor_controls_usage','a:12:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:5;s:5:\"align\";i:3;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:11:{s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;s:14:\"_element_width\";i:2;s:21:\"_element_width_tablet\";i:2;s:21:\"_element_width_mobile\";i:2;s:21:\"_element_custom_width\";i:2;s:9:\"_position\";i:2;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:2;s:9:\"_offset_y\";i:2;s:21:\"_offset_orientation_v\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:32;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:21:\"space_between_widgets\";i:19;s:12:\"_inline_size\";i:15;s:16:\"content_position\";i:15;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:16:\"background_color\";i:6;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:14;s:11:\"_element_id\";i:1;s:6:\"margin\";i:12;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:15:\"animation_delay\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:3;s:5:\"align\";i:3;s:11:\"icon_indent\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:19:{s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:25:\"button_hover_border_color\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:13:\"border_radius\";i:3;s:12:\"text_padding\";i:3;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:3;s:21:\"typography_font_style\";i:1;s:26:\"typography_text_decoration\";i:1;s:25:\"typography_letter_spacing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:12:{s:13:\"content_width\";i:12;s:3:\"gap\";i:12;s:6:\"height\";i:6;s:13:\"custom_height\";i:8;s:16:\"content_position\";i:4;s:6:\"_title\";i:10;s:8:\"html_tag\";i:2;s:15:\"column_position\";i:5;s:6:\"layout\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:5;s:16:\"background_image\";i:2;s:21:\"background_attachment\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:14;s:6:\"margin\";i:10;s:7:\"z_index\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:12;s:11:\"header_size\";i:4;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:11:\"title_color\";i:12;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:25:\"typography_text_transform\";i:9;s:21:\"typography_font_style\";i:7;s:26:\"typography_text_decoration\";i:7;s:22:\"typography_line_height\";i:10;s:25:\"typography_letter_spacing\";i:7;s:23:\"typography_word_spacing\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:10;s:8:\"_z_index\";i:1;}s:15:\"section_effects\";a:4:{s:10:\"_animation\";i:6;s:18:\"animation_duration\";i:2;s:16:\"_animation_delay\";i:4;s:17:\"_animation_tablet\";i:2;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:4;s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:21:\"typography_font_style\";i:4;s:26:\"typography_text_decoration\";i:4;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:1;s:17:\"_animation_tablet\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:10;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:4;s:10:\"icon_space\";i:4;s:9:\"icon_size\";i:4;}s:17:\"section_style_box\";a:1:{s:10:\"text_align\";i:4;}s:21:\"section_style_content\";a:21:{s:18:\"title_bottom_space\";i:4;s:11:\"title_color\";i:4;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:31:\"title_typography_text_transform\";i:4;s:27:\"title_typography_font_style\";i:4;s:32:\"title_typography_text_decoration\";i:4;s:28:\"title_typography_line_height\";i:4;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:4;s:34:\"description_typography_font_weight\";i:4;s:37:\"description_typography_text_transform\";i:4;s:33:\"description_typography_font_style\";i:4;s:38:\"description_typography_text_decoration\";i:4;s:34:\"description_typography_line_height\";i:4;s:31:\"title_typography_letter_spacing\";i:4;s:37:\"description_typography_letter_spacing\";i:4;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:7:\"divider\";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:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;s:5:\"color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:3;s:5:\"title\";i:3;s:13:\"ending_number\";i:3;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:7:{s:12:\"number_color\";i:3;s:28:\"typography_number_typography\";i:3;s:29:\"typography_number_font_family\";i:3;s:27:\"typography_number_font_size\";i:3;s:29:\"typography_number_font_weight\";i:3;s:29:\"typography_number_line_height\";i:3;s:30:\"typography_number_word_spacing\";i:3;}}}}}'),(2858,454,'_edit_lock','1680782513:1'),(2859,454,'_elementor_edit_mode','builder'),(2860,454,'_elementor_template_type','wp-page'),(2861,454,'_elementor_version','3.12.1'),(2862,454,'_elementor_pro_version','3.11.6'),(2871,457,'_elementor_edit_mode','builder'),(2872,457,'_elementor_template_type','wp-page'),(2873,457,'_elementor_version','3.12.1'),(2874,457,'_elementor_pro_version','3.11.6'),(2875,458,'_elementor_edit_mode','builder'),(2876,458,'_elementor_template_type','wp-page'),(2877,458,'_elementor_version','3.12.1'),(2878,458,'_elementor_pro_version','3.11.6'),(2879,454,'_wp_page_template','elementor_canvas'),(2880,454,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2881,454,'_elementor_data','[{\"id\":\"37f330cf\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"28fa458e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3e6d9a99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"7e7d9930\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"5fc8d01e\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"38450bda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"422135fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"229a234a\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"654a4173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"688a83e0\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"23a7fec3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"3f2a9519\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d6b4e7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79890742\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"7f1df2f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"606842a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fa6d780\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"elementskit-wp-forms\"},{\"id\":\"3563b426\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c20ec2f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"e94acf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"25058295\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46bca71d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"ce9ac66\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35b7a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"469d5e0e\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eab30fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"22b3d159\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"651a76d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"63768aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"67a8f3d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"1c8c30d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"166b4246\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"19cb8893\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3901fc10\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f04ef8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"55932f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3948f5b9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7da64442\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2532a8b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ed55e55\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"132dffa1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bd7ad0\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"d942208\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"7f51733f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3955f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4736cb9b\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"58b2a25a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b7ebba\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3837e5cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5d6462a1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"215c2d0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5d9b031b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"af5c8f6\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"9cf6441\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"458f99c8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1dd7e9e7\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"203eb264\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7327bdc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"51eb6b9d\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3ef94c6c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"42a3ff22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53dd124e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec98df\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"63047594\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71ef7ea6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"f2012c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1926afbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"269b169f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"3b3bc4cc\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"2b20d7d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d7e767e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"191aea9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"7eef4c25\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"131916b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"3dd92445\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"2fc1bc3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b43e709\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7df84661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"3f825571\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2c27ed19\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"6c5a9ea3\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"75f5b315\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fdab3e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d7892f7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5ab58ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7310618\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"395faabd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"360356a8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"58a83fde\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"44c7b120\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d8d5024\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3a2bc2f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"68f266dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5d4d38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b7c0f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2882,459,'_elementor_edit_mode','builder'),(2883,459,'_elementor_template_type','wp-page'),(2884,459,'_elementor_version','3.12.1'),(2885,459,'_elementor_pro_version','3.11.6'),(2886,459,'_wp_page_template','elementor_canvas'),(2887,459,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#252734\";}'),(2888,459,'_elementor_data','[{\"id\":\"37f330cf\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"12\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Header\",\"html_tag\":\"header\"},\"elements\":[{\"id\":\"28fa458e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"3e6d9a99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"213\",\"sizes\":[]},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"140\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"7e7d9930\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_mobile\":\"50\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"5fc8d01e\",\"elType\":\"widget\",\"settings\":{\"text\":\"991-199-0010\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"hover_color\":\"#252734\",\"button_background_hover_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"39\",\"bottom\":\"18\",\"left\":\"39\",\"isLinked\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/wa.me\\/+91 9911990010?text=Hi I am interested in your services, can we connect. \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"38450bda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Hero Picture\"},\"elements\":[{\"id\":\"422135fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"85\",\"background_background\":\"classic\",\"background_image\":{\"id\":359,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/Untitled-design-17.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"82\"},\"elements\":[{\"id\":\"229a234a\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"48\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"654a4173\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"14.972\",\"background_background\":\"classic\",\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"_inline_size_tablet\":\"18\"},\"elements\":[{\"id\":\"688a83e0\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"vh\",\"size\":\"5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"23a7fec3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"610\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"structure\":\"22\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-390\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"525\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Title &amp; Booking Form\"},\"elements\":[{\"id\":\"3f2a9519\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"66\",\"_inline_size\":\"69.231\",\"content_position\":\"bottom\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"60\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d6b4e7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digitally Advertise next with \",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79890742\",\"elType\":\"widget\",\"settings\":{\"title\":\"Skilled professionals, and experienced Marketers.\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"},{\"id\":\"7f1df2f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size\":\"30.104\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"13\",\"bottom\":\"4\",\"left\":\"13\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"40\",\"space_between_widgets\":\"0\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"\"},\"_element_id\":\"bookform\"},\"elements\":[{\"id\":\"606842a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"12\",\"left\":\"5\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fa6d780\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"elementskit-wp-forms\"},{\"id\":\"3563b426\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Booking Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"placeholder\":\"Full Name\",\"_id\":\"e99e9b3\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email Address\",\"placeholder\":\"Email Address\",\"_id\":\"882f89b\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Phone Number\",\"placeholder\":\"Phone Number\",\"rows\":\"4\",\"custom_id\":\"field_1f3565c\",\"_id\":\"1f3565c\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"go for it\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_background_color\":\"#333646\",\"field_border_color\":\"rgba(255, 255, 255, 0)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Raleway\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"normal\",\"button_typography_text_decoration\":\"none\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_background_color\":\"#FFAF29\",\"previous_button_background_color\":\"#FFAF29\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"previous_button_background_color_hover\":\"rgba(255, 255, 255, 0)\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"message_typography_typography\":\"custom\",\"message_typography_font_family\":\"Montserrat\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"message_typography_font_weight\":\"500\",\"success_message_color\":\"#FFAF29\",\"error_message_color\":\"#FFFFFF\",\"inline_message_color\":\"#FFFFFF\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"button_text_color\":\"#252734\",\"button_border_color\":\"#FFAF29\",\"previous_button_text_color\":\"#252734\",\"previous_button_border_color\":\"#FFAF29\",\"button_hover_border_color\":\"#FFAF29\",\"previous_button_border_color_hover\":\"#FFAF29\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"field_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"wp@dxpsites.com\",\"email_subject\":\"New message from &quot;My WordPress&quot;\",\"email_from\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name\":\"My WordPress\",\"email_to_2\":\"wp@dxpsites.com\",\"email_subject_2\":\"New message from &quot;My WordPress&quot;\",\"email_from_2\":\"email@whatthehell-new.in8.cdn-alpha.com\",\"email_from_name_2\":\"My WordPress\",\"email_reply_to_2\":\"wp@dxpsites.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c20ec2f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"22\",\"bottom\":\"10\",\"left\":\"22\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"6\",\"bottom\":\"5\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Let Chef Henry Do the Cooking for You\"},\"elements\":[{\"id\":\"e94acf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\"},\"elements\":[{\"id\":\"25058295\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let us do the thinking for you\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46bca71d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"ce9ac66\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35b7a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"469d5e0e\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#F9A42B\",\"twae_icon_color\":\"#F9A42B\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E521\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#FFAC1A\",\"twae_icon_bgcolor\":\"#4E4303\",\"twae_description_color\":\"#FFFFFF\",\"twae_description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eab30fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"390\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-194\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"5\",\"_title\":\"Services\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[{\"id\":\"22b3d159\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"651a76d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Influencer marketing\",\"description_text\":\"Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"63768aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"67a8f3d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Testimonial Marketing\",\"description_text\":\"Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"1c8c30d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#434657\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"166b4246\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Experiential Marketing\",\"description_text\":\"Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.\",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"19cb8893\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"center\",\"space_between_widgets\":\"0\",\"background_color\":\"#434657\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3901fc10\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Moment Marketing\",\"description_text\":\"Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. \",\"primary_color\":\"#FFAF29\",\"icon_space\":{\"unit\":\"px\",\"size\":\"33\",\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"title_color\":\"#F9A42B\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Raleway\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"200\",\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"text_align_mobile\":\"center\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4f04ef8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"860\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"26\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"content_position\":\"top\",\"background_color\":\"#333646\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"55\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"About Chef Henry\"},\"elements\":[{\"id\":\"55932f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3948f5b9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"16\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7da64442\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2532a8b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ed55e55\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Possibilities \",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"132dffa1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.<\\/p>\",\"align\":\"left\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bd7ad0\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"d942208\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":418,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-8.webp\"},{\"id\":416,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-10.webp\"},{\"id\":417,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-9.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"},{\"id\":\"7f51733f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"background_background\":\"classic\",\"_inline_size_tablet\":\"50\",\"content_position\":\"top\",\"space_between_widgets\":\"0\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3955f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":364,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/800x800-Fl-copy-2-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"5\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\"]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4736cb9b\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":433,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-11.webp\"},{\"id\":432,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-12.webp\"},{\"id\":431,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/WTH-13.webp\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_devices\":[\"mobile\"]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"58b2a25a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"410\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":\"\"},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"405\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"background_color\":\"#252734\",\"margin\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"40\",\"right\":\"4\",\"bottom\":\"10\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"45\",\"right\":\"6\",\"bottom\":\"14\",\"left\":\"6\",\"isLinked\":\"\"},\"z_index\":\"0\",\"_title\":\"Reviews From My Satisfied Clients\"},\"elements\":[{\"id\":\"1b7ebba\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"50\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3837e5cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Happy Faces Says ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_animation\":\"fadeIn\",\"_animation_tablet\":\"none\",\"_animation_delay\":\"200\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5d6462a1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"5\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"10\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Testimonials\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"30\",\"left\":\"8\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"215c2d0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5d9b031b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"af5c8f6\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cExcellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .\\u201d\",\"author_name\":\"P Sarvanan\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"9cf6441\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"458f99c8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1dd7e9e7\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cI always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..\\u201d\\n\",\"author_name\":\"Amit Rathod\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"},{\"id\":\"203eb264\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"space_between_widgets\":\"0\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7327bdc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":352,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/quote-mark.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"align_tablet\":\"left\",\"primary_color\":\"#FFAF29\",\"size\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"51eb6b9d\",\"elType\":\"widget\",\"settings\":{\"blockquote_skin\":\"clean\",\"alignment\":\"left\",\"blockquote_content\":\"\\u201cIt is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency\\u201d\",\"author_name\":\"Sandeep\",\"tweet_button\":\"\",\"tweet_button_label\":\"Tweet\",\"content_text_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Raleway\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"normal\",\"content_typography_text_decoration\":\"none\",\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"content_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_text_color\":\"#FFFFFF\",\"author_typography_typography\":\"custom\",\"author_typography_font_family\":\"Raleway\",\"author_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"author_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"author_typography_font_weight\":\"200\",\"author_typography_text_transform\":\"capitalize\",\"author_typography_font_style\":\"normal\",\"author_typography_text_decoration\":\"none\",\"author_typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"author_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"author_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"blockquote\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3ef94c6c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"42a3ff22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53dd124e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec98df\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"color\":\"#F9A42B\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"63047594\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"title_color\":\"#F9A42B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71ef7ea6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#252734\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"f2012c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1926afbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"269b169f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"3b3bc4cc\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"2b20d7d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d7e767e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"191aea9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"7eef4c25\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"131916b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"3dd92445\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\",\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"2fc1bc3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b43e709\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7df84661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"3f825571\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2c27ed19\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"6c5a9ea3\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24,\"number_color\":\"#F9A42B\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Poppins\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"900\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_number_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_number_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"75f5b315\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fdab3e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d7892f7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"690\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"777\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"546\",\"sizes\":[]},\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":\"\"},\"_title\":\"Call To Action\",\"background_background\":\"gradient\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5ab58ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"-110\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7310618\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Digital.agency.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_tablet\":\"right\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"18\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"26\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"395faabd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/04\\/jon-tyson-QL0FAxaq2z0-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"21\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"32\",\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"360356a8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1548\",\"sizes\":[]},\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"495\",\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"310\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"105\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"58a83fde\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#333646\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"44c7b120\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book a slot today to see how our team can help you achieve your advertising goals.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"0.4\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":\"\"},\"_z_index\":\"30\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d8d5024\",\"elType\":\"widget\",\"settings\":{\"text\":\"go for it\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"button_text_color\":\"#252734\",\"background_color\":\"#FFAF29\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(255, 255, 255, 0)\",\"button_hover_border_color\":\"#FFAF29\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#FFAF29\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"109\",\"bottom\":\"18\",\"left\":\"109\",\"isLinked\":\"\"},\"link\":{\"url\":\"#bookform\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"70\",\"bottom\":\"18\",\"left\":\"70\",\"isLinked\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":\"\"},\"align_mobile\":\"justify\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3a2bc2f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1720\",\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"html_tag\":\"footer\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"68f266dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"50\",\"space_between_widgets_mobile\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5d4d38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b7c0f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u24b8 WhatTheHell. All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2889,454,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(2890,454,'_elementor_controls_usage','a:12:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:5;s:5:\"align\";i:3;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:11:{s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;s:14:\"_element_width\";i:2;s:21:\"_element_width_tablet\";i:2;s:21:\"_element_width_mobile\";i:2;s:21:\"_element_custom_width\";i:2;s:9:\"_position\";i:2;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:2;s:9:\"_offset_y\";i:2;s:21:\"_offset_orientation_v\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:32;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:21:\"space_between_widgets\";i:19;s:12:\"_inline_size\";i:15;s:16:\"content_position\";i:15;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:16:\"background_color\";i:6;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:14;s:11:\"_element_id\";i:1;s:6:\"margin\";i:12;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:15:\"animation_delay\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:3;s:5:\"align\";i:3;s:11:\"icon_indent\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:19:{s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:25:\"button_hover_border_color\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:13:\"border_radius\";i:3;s:12:\"text_padding\";i:3;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:3;s:21:\"typography_font_style\";i:1;s:26:\"typography_text_decoration\";i:1;s:25:\"typography_letter_spacing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:12:{s:13:\"content_width\";i:12;s:3:\"gap\";i:12;s:6:\"height\";i:6;s:13:\"custom_height\";i:8;s:16:\"content_position\";i:4;s:6:\"_title\";i:10;s:8:\"html_tag\";i:2;s:15:\"column_position\";i:5;s:6:\"layout\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:5;s:16:\"background_image\";i:2;s:21:\"background_attachment\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:14;s:6:\"margin\";i:10;s:7:\"z_index\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:12;s:11:\"header_size\";i:4;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:11:\"title_color\";i:12;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:25:\"typography_text_transform\";i:9;s:21:\"typography_font_style\";i:7;s:26:\"typography_text_decoration\";i:7;s:22:\"typography_line_height\";i:10;s:25:\"typography_letter_spacing\";i:7;s:23:\"typography_word_spacing\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:10;s:8:\"_z_index\";i:1;}s:15:\"section_effects\";a:4:{s:10:\"_animation\";i:6;s:18:\"animation_duration\";i:2;s:16:\"_animation_delay\";i:4;s:17:\"_animation_tablet\";i:2;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:4;s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:21:\"typography_font_style\";i:4;s:26:\"typography_text_decoration\";i:4;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:1;s:17:\"_animation_tablet\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:10;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:4;s:10:\"icon_space\";i:4;s:9:\"icon_size\";i:4;}s:17:\"section_style_box\";a:1:{s:10:\"text_align\";i:4;}s:21:\"section_style_content\";a:21:{s:18:\"title_bottom_space\";i:4;s:11:\"title_color\";i:4;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:31:\"title_typography_text_transform\";i:4;s:27:\"title_typography_font_style\";i:4;s:32:\"title_typography_text_decoration\";i:4;s:28:\"title_typography_line_height\";i:4;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:4;s:34:\"description_typography_font_weight\";i:4;s:37:\"description_typography_text_transform\";i:4;s:33:\"description_typography_font_style\";i:4;s:38:\"description_typography_text_decoration\";i:4;s:34:\"description_typography_line_height\";i:4;s:31:\"title_typography_letter_spacing\";i:4;s:37:\"description_typography_letter_spacing\";i:4;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:7:\"divider\";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:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;s:5:\"color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:3;s:5:\"title\";i:3;s:13:\"ending_number\";i:3;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:7:{s:12:\"number_color\";i:3;s:28:\"typography_number_typography\";i:3;s:29:\"typography_number_font_family\";i:3;s:27:\"typography_number_font_size\";i:3;s:29:\"typography_number_font_weight\";i:3;s:29:\"typography_number_line_height\";i:3;s:30:\"typography_number_word_spacing\";i:3;}}}}}'),(2912,461,'_wp_attached_file','2023/03/Ideacloud-white-logo-01.png'),(2913,461,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:35:\"2023/03/Ideacloud-white-logo-01.png\";s:8:\"filesize\";i:37661;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Ideacloud-white-logo-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8133;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"Ideacloud-white-logo-01-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32601;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Ideacloud-white-logo-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3850;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Ideacloud-white-logo-01-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23266;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2914,462,'_wp_page_template','elementor_header_footer'),(2915,462,'_elementor_edit_mode','builder'),(2916,462,'_elementor_template_type','wp-post'),(2917,462,'_elementor_version','3.11.5'),(2918,462,'_elementor_pro_version','3.11.6'),(2919,462,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2920,462,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2922,463,'_wp_page_template','elementor_header_footer'),(2923,463,'_elementor_edit_mode','builder'),(2924,463,'_elementor_template_type','wp-post'),(2925,463,'_elementor_version','3.11.5'),(2926,463,'_elementor_pro_version','3.11.6'),(2927,463,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2928,463,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2930,464,'_wp_page_template','elementor_header_footer'),(2931,464,'_elementor_edit_mode','builder'),(2932,464,'_elementor_template_type','wp-post'),(2933,464,'_elementor_version','3.11.5'),(2934,464,'_elementor_pro_version','3.11.6'),(2935,464,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2936,464,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2939,465,'_wp_page_template','elementor_header_footer'),(2940,465,'_elementor_edit_mode','builder'),(2941,465,'_elementor_template_type','wp-post'),(2942,465,'_elementor_version','3.11.5'),(2943,465,'_elementor_pro_version','3.11.6'),(2944,465,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2945,465,'_elementor_page_assets','a:0:{}'),(2947,466,'_wp_page_template','elementor_header_footer'),(2948,466,'_elementor_edit_mode','builder'),(2949,466,'_elementor_template_type','wp-post'),(2950,466,'_elementor_version','3.11.5'),(2951,466,'_elementor_pro_version','3.11.6'),(2952,466,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":278,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WhatTheHell.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2953,466,'_elementor_page_assets','a:0:{}'),(2955,467,'_wp_page_template','elementor_header_footer'),(2956,467,'_elementor_edit_mode','builder'),(2957,467,'_elementor_template_type','wp-post'),(2958,467,'_elementor_version','3.11.5'),(2959,467,'_elementor_pro_version','3.11.6'),(2960,467,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2961,467,'_elementor_page_assets','a:0:{}'),(2986,471,'_wp_page_template','elementor_header_footer'),(2987,471,'_elementor_edit_mode','builder'),(2988,471,'_elementor_template_type','wp-post'),(2989,471,'_elementor_version','3.12.2'),(2990,471,'_elementor_pro_version','3.11.6'),(2991,471,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2992,471,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2993,472,'_wp_page_template','elementor_header_footer'),(2994,472,'_elementor_edit_mode','builder'),(2995,472,'_elementor_template_type','wp-post'),(2996,472,'_elementor_version','3.12.2'),(2997,472,'_elementor_pro_version','3.11.6'),(2998,472,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2999,472,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3000,473,'_wp_page_template','elementor_header_footer'),(3001,473,'_elementor_edit_mode','builder'),(3002,473,'_elementor_template_type','wp-post'),(3003,473,'_elementor_version','3.12.2'),(3004,473,'_elementor_pro_version','3.11.6'),(3005,473,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3006,473,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3010,474,'_wp_page_template','elementor_header_footer'),(3011,474,'_elementor_edit_mode','builder'),(3012,474,'_elementor_template_type','wp-post'),(3013,474,'_elementor_version','3.12.2'),(3014,474,'_elementor_pro_version','3.11.6'),(3015,474,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3016,474,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3018,475,'_wp_page_template','elementor_header_footer'),(3019,475,'_elementor_edit_mode','builder'),(3020,475,'_elementor_template_type','wp-post'),(3021,475,'_elementor_version','3.12.2'),(3022,475,'_elementor_pro_version','3.11.6'),(3023,475,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3024,475,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3026,476,'_wp_page_template','elementor_header_footer'),(3027,476,'_elementor_edit_mode','builder'),(3028,476,'_elementor_template_type','wp-post'),(3029,476,'_elementor_version','3.12.2'),(3030,476,'_elementor_pro_version','3.11.6'),(3031,476,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"85\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3032,476,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3035,477,'_wp_page_template','elementor_header_footer'),(3036,477,'_elementor_edit_mode','builder'),(3037,477,'_elementor_template_type','wp-post'),(3038,477,'_elementor_version','3.12.2'),(3039,477,'_elementor_pro_version','3.11.6'),(3040,477,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3041,477,'_elementor_page_assets','a:0:{}'),(3043,478,'_wp_page_template','elementor_header_footer'),(3044,478,'_elementor_edit_mode','builder'),(3045,478,'_elementor_template_type','wp-post'),(3046,478,'_elementor_version','3.12.2'),(3047,478,'_elementor_pro_version','3.11.6'),(3048,478,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3049,478,'_elementor_page_assets','a:0:{}'),(3051,479,'_wp_page_template','elementor_header_footer'),(3052,479,'_elementor_edit_mode','builder'),(3053,479,'_elementor_template_type','wp-post'),(3054,479,'_elementor_version','3.12.2'),(3055,479,'_elementor_pro_version','3.11.6'),(3056,479,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"235\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3057,479,'_elementor_page_assets','a:0:{}'),(3062,480,'_wp_page_template','elementor_header_footer'),(3063,480,'_elementor_edit_mode','builder'),(3064,480,'_elementor_template_type','wp-post'),(3065,480,'_elementor_version','3.12.2'),(3066,480,'_elementor_pro_version','3.11.6'),(3067,480,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"235\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3068,480,'_elementor_page_assets','a:0:{}'),(3070,481,'_wp_page_template','elementor_header_footer'),(3071,481,'_elementor_edit_mode','builder'),(3072,481,'_elementor_template_type','wp-post'),(3073,481,'_elementor_version','3.12.2'),(3074,481,'_elementor_pro_version','3.11.6'),(3075,481,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"235\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3076,481,'_elementor_page_assets','a:0:{}'),(3078,482,'_wp_page_template','elementor_header_footer'),(3079,482,'_elementor_edit_mode','builder'),(3080,482,'_elementor_template_type','wp-post'),(3081,482,'_elementor_version','3.12.2'),(3082,482,'_elementor_pro_version','3.11.6'),(3083,482,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3084,482,'_elementor_page_assets','a:0:{}'),(3088,483,'_wp_page_template','elementor_header_footer'),(3089,483,'_elementor_edit_mode','builder'),(3090,483,'_elementor_template_type','wp-post'),(3091,483,'_elementor_version','3.12.2'),(3092,483,'_elementor_pro_version','3.11.6'),(3093,483,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"85\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3094,483,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3096,484,'_wp_page_template','elementor_header_footer'),(3097,484,'_elementor_edit_mode','builder'),(3098,484,'_elementor_template_type','wp-post'),(3099,484,'_elementor_version','3.12.2'),(3100,484,'_elementor_pro_version','3.11.6'),(3101,484,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"85\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3102,484,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3104,485,'_wp_page_template','elementor_header_footer'),(3105,485,'_elementor_edit_mode','builder'),(3106,485,'_elementor_template_type','wp-post'),(3107,485,'_elementor_version','3.12.2'),(3108,485,'_elementor_pro_version','3.11.6'),(3109,485,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3110,485,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3124,487,'_wp_page_template','elementor_header_footer'),(3125,487,'_elementor_edit_mode','builder'),(3126,487,'_elementor_template_type','wp-post'),(3127,487,'_elementor_version','3.12.2'),(3128,487,'_elementor_pro_version','3.11.6'),(3129,487,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3130,487,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3132,488,'_wp_page_template','elementor_header_footer'),(3133,488,'_elementor_edit_mode','builder'),(3134,488,'_elementor_template_type','wp-post'),(3135,488,'_elementor_version','3.12.2'),(3136,488,'_elementor_pro_version','3.11.6'),(3137,488,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3138,488,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3140,489,'_wp_page_template','elementor_header_footer'),(3141,489,'_elementor_edit_mode','builder'),(3142,489,'_elementor_template_type','wp-post'),(3143,489,'_elementor_version','3.12.2'),(3144,489,'_elementor_pro_version','3.11.6'),(3145,489,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3146,489,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3150,490,'_wp_page_template','elementor_header_footer'),(3151,490,'_elementor_edit_mode','builder'),(3152,490,'_elementor_template_type','wp-post'),(3153,490,'_elementor_version','3.12.2'),(3154,490,'_elementor_pro_version','3.11.6'),(3155,490,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3156,490,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3158,491,'_wp_page_template','elementor_header_footer'),(3159,491,'_elementor_edit_mode','builder'),(3160,491,'_elementor_template_type','wp-post'),(3161,491,'_elementor_version','3.12.2'),(3162,491,'_elementor_pro_version','3.11.6'),(3163,491,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3164,491,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3166,492,'_wp_page_template','elementor_header_footer'),(3167,492,'_elementor_edit_mode','builder'),(3168,492,'_elementor_template_type','wp-post'),(3169,492,'_elementor_version','3.12.2'),(3170,492,'_elementor_pro_version','3.11.6'),(3171,492,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3172,492,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3176,493,'_wp_page_template','elementor_header_footer'),(3177,493,'_elementor_edit_mode','builder'),(3178,493,'_elementor_template_type','wp-post'),(3179,493,'_elementor_version','3.12.2'),(3180,493,'_elementor_pro_version','3.11.6'),(3181,493,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3182,493,'_elementor_page_assets','a:0:{}'),(3184,494,'_wp_page_template','elementor_header_footer'),(3185,494,'_elementor_edit_mode','builder'),(3186,494,'_elementor_template_type','wp-post'),(3187,494,'_elementor_version','3.12.2'),(3188,494,'_elementor_pro_version','3.11.6'),(3189,494,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>B-53\\/2, Naraina Vihar, New Delhi \\u2013 110028<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>9911990010<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3190,494,'_elementor_page_assets','a:0:{}'),(3192,495,'_wp_page_template','elementor_header_footer'),(3193,495,'_elementor_edit_mode','builder'),(3194,495,'_elementor_template_type','wp-post'),(3195,495,'_elementor_version','3.12.2'),(3196,495,'_elementor_pro_version','3.11.6'),(3197,495,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3198,495,'_elementor_page_assets','a:0:{}'),(3202,496,'_wp_page_template','elementor_header_footer'),(3203,496,'_elementor_edit_mode','builder'),(3204,496,'_elementor_template_type','wp-post'),(3205,496,'_elementor_version','3.12.2'),(3206,496,'_elementor_pro_version','3.11.6'),(3207,496,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3208,496,'_elementor_page_assets','a:0:{}'),(3210,497,'_wp_page_template','elementor_header_footer'),(3211,497,'_elementor_edit_mode','builder'),(3212,497,'_elementor_template_type','wp-post'),(3213,497,'_elementor_version','3.12.2'),(3214,497,'_elementor_pro_version','3.11.6'),(3215,497,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3216,497,'_elementor_page_assets','a:0:{}'),(3218,498,'_wp_page_template','elementor_header_footer'),(3219,498,'_elementor_edit_mode','builder'),(3220,498,'_elementor_template_type','wp-post'),(3221,498,'_elementor_version','3.12.2'),(3222,498,'_elementor_pro_version','3.11.6'),(3223,498,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3224,498,'_elementor_page_assets','a:0:{}'),(3228,499,'_wp_page_template','elementor_header_footer'),(3229,499,'_elementor_edit_mode','builder'),(3230,499,'_elementor_template_type','wp-post'),(3231,499,'_elementor_version','3.12.2'),(3232,499,'_elementor_pro_version','3.11.6'),(3233,499,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3234,499,'_elementor_page_assets','a:0:{}'),(3236,500,'_wp_page_template','elementor_header_footer'),(3237,500,'_elementor_edit_mode','builder'),(3238,500,'_elementor_template_type','wp-post'),(3239,500,'_elementor_version','3.12.2'),(3240,500,'_elementor_pro_version','3.11.6'),(3241,500,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 What The Hell<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3242,500,'_elementor_page_assets','a:0:{}'),(3244,501,'_wp_page_template','elementor_header_footer'),(3245,501,'_elementor_edit_mode','builder'),(3246,501,'_elementor_template_type','wp-post'),(3247,501,'_elementor_version','3.12.2'),(3248,501,'_elementor_pro_version','3.11.6'),(3249,501,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3250,501,'_elementor_page_assets','a:0:{}'),(3253,502,'_wp_page_template','elementor_header_footer'),(3254,502,'_elementor_edit_mode','builder'),(3255,502,'_elementor_template_type','wp-post'),(3256,502,'_elementor_version','3.12.2'),(3257,502,'_elementor_pro_version','3.11.6'),(3258,502,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3259,502,'_elementor_page_assets','a:0:{}'),(3260,503,'_wp_page_template','elementor_header_footer'),(3261,503,'_elementor_edit_mode','builder'),(3262,503,'_elementor_template_type','wp-post'),(3263,503,'_elementor_version','3.12.2'),(3264,503,'_elementor_pro_version','3.11.6'),(3265,503,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"125\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3266,503,'_elementor_page_assets','a:0:{}'),(3267,504,'_wp_page_template','elementor_header_footer'),(3268,504,'_elementor_edit_mode','builder'),(3269,504,'_elementor_template_type','wp-post'),(3270,504,'_elementor_version','3.12.2'),(3271,504,'_elementor_pro_version','3.11.6'),(3272,504,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"145\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3273,504,'_elementor_page_assets','a:0:{}'),(3286,506,'_wp_page_template','elementor_header_footer'),(3287,506,'_elementor_edit_mode','builder'),(3288,506,'_elementor_template_type','wp-page'),(3289,506,'_elementor_version','3.11.5'),(3290,506,'_elementor_pro_version','3.11.6'),(3291,506,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3292,506,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3294,507,'_wp_page_template','elementor_header_footer'),(3295,507,'_elementor_edit_mode','builder'),(3296,507,'_elementor_template_type','wp-page'),(3297,507,'_elementor_version','3.11.5'),(3298,507,'_elementor_pro_version','3.11.6'),(3299,507,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3300,507,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3302,508,'_wp_page_template','elementor_header_footer'),(3303,508,'_elementor_edit_mode','builder'),(3304,508,'_elementor_template_type','wp-page'),(3305,508,'_elementor_version','3.11.5'),(3306,508,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (3307,508,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3308,508,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3312,509,'_wp_page_template','elementor_header_footer'),(3313,509,'_elementor_edit_mode','builder'),(3314,509,'_elementor_template_type','wp-post'),(3315,509,'_elementor_version','3.12.2'),(3316,509,'_elementor_pro_version','3.11.6'),(3317,509,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"145\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3318,509,'_elementor_page_assets','a:0:{}'),(3320,510,'_wp_page_template','elementor_header_footer'),(3321,510,'_elementor_edit_mode','builder'),(3322,510,'_elementor_template_type','wp-post'),(3323,510,'_elementor_version','3.12.2'),(3324,510,'_elementor_pro_version','3.11.6'),(3325,510,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"145\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3326,510,'_elementor_page_assets','a:0:{}'),(3328,511,'_wp_page_template','elementor_header_footer'),(3329,511,'_elementor_edit_mode','builder'),(3330,511,'_elementor_template_type','wp-post'),(3331,511,'_elementor_version','3.12.2'),(3332,511,'_elementor_pro_version','3.11.6'),(3333,511,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3334,511,'_elementor_page_assets','a:0:{}'),(3347,513,'_wp_page_template','elementor_header_footer'),(3348,513,'_elementor_edit_mode','builder'),(3349,513,'_elementor_template_type','wp-post'),(3350,513,'_elementor_version','3.12.2'),(3351,513,'_elementor_pro_version','3.11.6'),(3352,513,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3353,513,'_elementor_page_assets','a:0:{}'),(3355,514,'_wp_page_template','elementor_header_footer'),(3356,514,'_elementor_edit_mode','builder'),(3357,514,'_elementor_template_type','wp-post'),(3358,514,'_elementor_version','3.12.2'),(3359,514,'_elementor_pro_version','3.11.6'),(3360,514,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3361,514,'_elementor_page_assets','a:0:{}'),(3363,515,'_wp_page_template','elementor_header_footer'),(3364,515,'_elementor_edit_mode','builder'),(3365,515,'_elementor_template_type','wp-post'),(3366,515,'_elementor_version','3.12.2'),(3367,515,'_elementor_pro_version','3.11.6'),(3368,515,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3369,515,'_elementor_page_assets','a:0:{}'),(3374,516,'_wp_page_template','elementor_header_footer'),(3375,516,'_elementor_edit_mode','builder'),(3376,516,'_elementor_template_type','wp-post'),(3377,516,'_elementor_version','3.12.2'),(3378,516,'_elementor_pro_version','3.11.6'),(3379,516,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3380,516,'_elementor_page_assets','a:0:{}'),(3382,517,'_wp_page_template','elementor_header_footer'),(3383,517,'_elementor_edit_mode','builder'),(3384,517,'_elementor_template_type','wp-post'),(3385,517,'_elementor_version','3.12.2'),(3386,517,'_elementor_pro_version','3.11.6'),(3387,517,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3388,517,'_elementor_page_assets','a:0:{}'),(3390,518,'_wp_page_template','elementor_header_footer'),(3391,518,'_elementor_edit_mode','builder'),(3392,518,'_elementor_template_type','wp-post'),(3393,518,'_elementor_version','3.12.2'),(3394,518,'_elementor_pro_version','3.11.6'),(3395,518,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3396,518,'_elementor_page_assets','a:0:{}'),(3400,519,'_wp_page_template','elementor_header_footer'),(3401,519,'_elementor_edit_mode','builder'),(3402,519,'_elementor_template_type','wp-page'),(3403,519,'_elementor_version','3.12.2'),(3404,519,'_elementor_pro_version','3.11.6'),(3405,519,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3406,519,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3408,520,'_wp_page_template','elementor_header_footer'),(3409,520,'_elementor_edit_mode','builder'),(3410,520,'_elementor_template_type','wp-page'),(3411,520,'_elementor_version','3.12.2'),(3412,520,'_elementor_pro_version','3.11.6'),(3413,520,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3414,520,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3416,521,'_wp_page_template','elementor_header_footer'),(3417,521,'_elementor_edit_mode','builder'),(3418,521,'_elementor_template_type','wp-page'),(3419,521,'_elementor_version','3.12.2'),(3420,521,'_elementor_pro_version','3.11.6'),(3421,521,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3422,521,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3426,522,'_wp_page_template','elementor_header_footer'),(3427,522,'_elementor_edit_mode','builder'),(3428,522,'_elementor_template_type','wp-page'),(3429,522,'_elementor_version','3.12.2'),(3430,522,'_elementor_pro_version','3.11.6'),(3431,522,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3432,522,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3434,523,'_wp_page_template','elementor_header_footer'),(3435,523,'_elementor_edit_mode','builder'),(3436,523,'_elementor_template_type','wp-page'),(3437,523,'_elementor_version','3.12.2'),(3438,523,'_elementor_pro_version','3.11.6'),(3439,523,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3440,523,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3442,524,'_wp_page_template','elementor_header_footer'),(3443,524,'_elementor_edit_mode','builder'),(3444,524,'_elementor_template_type','wp-page'),(3445,524,'_elementor_version','3.12.2'),(3446,524,'_elementor_pro_version','3.11.6'),(3447,524,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3448,524,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3452,525,'_wp_page_template','elementor_header_footer'),(3453,525,'_elementor_edit_mode','builder'),(3454,525,'_elementor_template_type','wp-page'),(3455,525,'_elementor_version','3.12.2'),(3456,525,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (3457,525,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3458,525,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3460,526,'_wp_page_template','elementor_header_footer'),(3461,526,'_elementor_edit_mode','builder'),(3462,526,'_elementor_template_type','wp-page'),(3463,526,'_elementor_version','3.12.2'),(3464,526,'_elementor_pro_version','3.11.6'),(3465,526,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3466,526,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3468,527,'_wp_page_template','elementor_header_footer'),(3469,527,'_elementor_edit_mode','builder'),(3470,527,'_elementor_template_type','wp-page'),(3471,527,'_elementor_version','3.12.2'),(3472,527,'_elementor_pro_version','3.11.6'),(3473,527,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3474,527,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3478,528,'_wp_page_template','elementor_header_footer'),(3479,528,'_elementor_edit_mode','builder'),(3480,528,'_elementor_template_type','wp-page'),(3481,528,'_elementor_version','3.12.2'),(3482,528,'_elementor_pro_version','3.11.6'),(3483,528,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3484,528,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3486,529,'_wp_page_template','elementor_header_footer'),(3487,529,'_elementor_edit_mode','builder'),(3488,529,'_elementor_template_type','wp-page'),(3489,529,'_elementor_version','3.12.2'),(3490,529,'_elementor_pro_version','3.11.6'),(3491,529,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3492,529,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3494,530,'_wp_page_template','elementor_header_footer'),(3495,530,'_elementor_edit_mode','builder'),(3496,530,'_elementor_template_type','wp-page'),(3497,530,'_elementor_version','3.12.2'),(3498,530,'_elementor_pro_version','3.11.6'),(3499,530,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3500,530,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3502,144,'_elementor_controls_usage','a:9:{s:7:\"divider\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:8;s:3:\"gap\";i:8;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:33;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:33;s:11:\"header_size\";i:12;s:5:\"align\";i:17;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:21;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:10;s:16:\"_animation_delay\";i:5;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:10;s:13:\"_border_color\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:11:\"title_color\";i:3;s:10:\"blend_mode\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:7;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:15;s:12:\"align_tablet\";i:9;s:5:\"align\";i:5;s:13:\"selected_icon\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:14:{s:17:\"button_text_color\";i:11;s:16:\"background_color\";i:11;s:12:\"border_width\";i:16;s:13:\"border_radius\";i:7;s:12:\"text_padding\";i:16;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:13:\"border_border\";i:15;s:12:\"border_color\";i:1;s:15:\"hover_animation\";i:9;s:11:\"hover_color\";i:9;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:9;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:6:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:7:\"columns\";i:1;s:5:\"align\";i:1;s:14:\"columns_mobile\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:45;s:21:\"space_between_widgets\";i:3;s:16:\"content_position\";i:7;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:11;s:6:\"margin\";i:15;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:15;s:15:\"animation_delay\";i:10;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:14:{s:21:\"background_background\";i:15;s:28:\"background_slideshow_gallery\";i:2;s:16:\"background_color\";i:4;s:16:\"background_image\";i:12;s:15:\"background_size\";i:11;s:27:\"background_hover_background\";i:9;s:22:\"background_hover_image\";i:9;s:21:\"background_hover_size\";i:3;s:27:\"background_hover_transition\";i:3;s:19:\"background_position\";i:8;s:25:\"background_gradient_angle\";i:1;s:40:\"background_slideshow_transition_duration\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:9;s:8:\"overflow\";i:1;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:14;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:11:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:7;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:25:\"background_gradient_angle\";i:1;s:16:\"background_image\";i:5;s:15:\"background_size\";i:3;s:15:\"background_xpos\";i:1;s:17:\"background_repeat\";i:1;s:21:\"background_attachment\";i:4;s:36:\"background_slideshow_background_size\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:11;s:6:\"margin\";i:3;s:7:\"z_index\";i:1;}s:19:\"_section_responsive\";a:3:{s:20:\"reverse_order_mobile\";i:1;s:20:\"reverse_order_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:8;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:3;s:5:\"title\";i:3;s:13:\"ending_number\";i:3;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}}'),(3504,531,'_wp_page_template','elementor_header_footer'),(3505,531,'_elementor_edit_mode','builder'),(3506,531,'_elementor_template_type','wp-post'),(3507,531,'_elementor_version','3.12.2'),(3508,531,'_elementor_pro_version','3.11.6'),(3509,531,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3510,531,'_elementor_page_assets','a:0:{}'),(3512,532,'_wp_page_template','elementor_header_footer'),(3513,532,'_elementor_edit_mode','builder'),(3514,532,'_elementor_template_type','wp-post'),(3515,532,'_elementor_version','3.12.2'),(3516,532,'_elementor_pro_version','3.11.6'),(3517,532,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3518,532,'_elementor_page_assets','a:0:{}'),(3520,533,'_wp_page_template','elementor_header_footer'),(3521,533,'_elementor_edit_mode','builder'),(3522,533,'_elementor_template_type','wp-post'),(3523,533,'_elementor_version','3.12.2'),(3524,533,'_elementor_pro_version','3.11.6'),(3525,533,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3526,533,'_elementor_page_assets','a:0:{}'),(3539,535,'_wp_page_template','elementor_header_footer'),(3540,535,'_elementor_edit_mode','builder'),(3541,535,'_elementor_template_type','wp-post'),(3542,535,'_elementor_version','3.12.2'),(3543,535,'_elementor_pro_version','3.11.6'),(3544,535,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3545,535,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3546,536,'_wp_page_template','elementor_header_footer'),(3547,536,'_elementor_edit_mode','builder'),(3548,536,'_elementor_template_type','wp-post'),(3549,536,'_elementor_version','3.12.2'),(3550,536,'_elementor_pro_version','3.11.6'),(3551,536,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3552,536,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3553,537,'_wp_page_template','elementor_header_footer'),(3554,537,'_elementor_edit_mode','builder'),(3555,537,'_elementor_template_type','wp-post'),(3556,537,'_elementor_version','3.12.2'),(3557,537,'_elementor_pro_version','3.11.6'),(3558,537,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3559,537,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3562,538,'_wp_page_template','elementor_header_footer'),(3563,538,'_elementor_edit_mode','builder'),(3564,538,'_elementor_template_type','wp-post'),(3565,538,'_elementor_version','3.12.2'),(3566,538,'_elementor_pro_version','3.11.6'),(3567,538,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3568,538,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3570,539,'_wp_page_template','elementor_header_footer'),(3571,539,'_elementor_edit_mode','builder'),(3572,539,'_elementor_template_type','wp-post'),(3573,539,'_elementor_version','3.12.2'),(3574,539,'_elementor_pro_version','3.11.6'),(3575,539,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3576,539,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3578,540,'_wp_page_template','elementor_header_footer'),(3579,540,'_elementor_edit_mode','builder'),(3580,540,'_elementor_template_type','wp-post'),(3581,540,'_elementor_version','3.12.2'),(3582,540,'_elementor_pro_version','3.11.6'),(3583,540,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3584,540,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3587,541,'_wp_page_template','elementor_header_footer'),(3588,541,'_elementor_edit_mode','builder'),(3589,541,'_elementor_template_type','wp-post'),(3590,541,'_elementor_version','3.12.2'),(3591,541,'_elementor_pro_version','3.11.6'),(3592,541,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3593,541,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3594,542,'_wp_page_template','elementor_header_footer'),(3595,542,'_elementor_edit_mode','builder'),(3596,542,'_elementor_template_type','wp-post'),(3597,542,'_elementor_version','3.12.2'),(3598,542,'_elementor_pro_version','3.11.6'),(3599,542,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3600,542,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3601,543,'_wp_page_template','elementor_header_footer'),(3602,543,'_elementor_edit_mode','builder'),(3603,543,'_elementor_template_type','wp-post'),(3604,543,'_elementor_version','3.12.2'),(3605,543,'_elementor_pro_version','3.11.6'),(3606,543,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3607,543,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3610,544,'_wp_page_template','elementor_header_footer'),(3611,544,'_elementor_edit_mode','builder'),(3612,544,'_elementor_template_type','wp-post'),(3613,544,'_elementor_version','3.12.2'),(3614,544,'_elementor_pro_version','3.11.6'),(3615,544,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3616,544,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3618,545,'_wp_page_template','elementor_header_footer'),(3619,545,'_elementor_edit_mode','builder'),(3620,545,'_elementor_template_type','wp-post'),(3621,545,'_elementor_version','3.12.2'),(3622,545,'_elementor_pro_version','3.11.6'),(3623,545,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":10,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":89,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3624,545,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3626,546,'_wp_page_template','elementor_header_footer'),(3627,546,'_elementor_edit_mode','builder'),(3628,546,'_elementor_template_type','wp-post'),(3629,546,'_elementor_version','3.12.2'),(3630,546,'_elementor_pro_version','3.11.6'),(3631,546,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":75,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"130\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":23,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3632,546,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3635,547,'_wp_page_template','elementor_header_footer'),(3636,547,'_elementor_edit_mode','builder'),(3637,547,'_elementor_template_type','wp-post'),(3638,547,'_elementor_version','3.12.2'),(3639,547,'_elementor_pro_version','3.11.6'),(3640,547,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":75,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"130\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":23,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3641,547,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3642,548,'_wp_page_template','elementor_header_footer'),(3643,548,'_elementor_edit_mode','builder'),(3644,548,'_elementor_template_type','wp-post'),(3645,548,'_elementor_version','3.12.2'),(3646,548,'_elementor_pro_version','3.11.6'),(3647,548,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":75,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"130\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":23,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3648,548,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3649,549,'_wp_page_template','elementor_header_footer'),(3650,549,'_elementor_edit_mode','builder'),(3651,549,'_elementor_template_type','wp-post'),(3652,549,'_elementor_version','3.12.2'),(3653,549,'_elementor_pro_version','3.11.6'),(3654,549,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":75,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"130\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":23,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3655,549,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3665,551,'_wp_page_template','elementor_header_footer'),(3666,551,'_elementor_edit_mode','builder'),(3667,551,'_elementor_template_type','wp-post'),(3668,551,'_elementor_version','3.12.2'),(3669,551,'_elementor_pro_version','3.11.6'),(3670,551,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":75,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"130\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":23,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3671,551,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3672,552,'_wp_page_template','elementor_header_footer'),(3673,552,'_elementor_edit_mode','builder'),(3674,552,'_elementor_template_type','wp-post'),(3675,552,'_elementor_version','3.12.2'),(3676,552,'_elementor_pro_version','3.11.6'),(3677,552,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":75,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"130\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":23,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3678,552,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3679,553,'_wp_page_template','elementor_header_footer'),(3680,553,'_elementor_edit_mode','builder'),(3681,553,'_elementor_template_type','wp-post'),(3682,553,'_elementor_version','3.12.2'),(3683,553,'_elementor_pro_version','3.11.6'),(3684,553,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3685,553,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3688,554,'_wp_attached_file','2023/03/Untitled-design-18.png'),(3689,554,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"2023/03/Untitled-design-18.png\";s:8:\"filesize\";i:49277;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Untitled-design-18-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10224;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Untitled-design-18-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4776;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Untitled-design-18-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30976;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3700,556,'_wp_page_template','elementor_header_footer'),(3701,556,'_elementor_edit_mode','builder'),(3702,556,'_elementor_template_type','wp-post'),(3703,556,'_elementor_version','3.12.2'),(3704,556,'_elementor_pro_version','3.11.6'),(3705,556,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3706,556,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3708,557,'_wp_page_template','elementor_header_footer'),(3709,557,'_elementor_edit_mode','builder'),(3710,557,'_elementor_template_type','wp-post'),(3711,557,'_elementor_version','3.12.2'),(3712,557,'_elementor_pro_version','3.11.6'),(3713,557,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3714,557,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3716,558,'_wp_page_template','elementor_header_footer'),(3717,558,'_elementor_edit_mode','builder'),(3718,558,'_elementor_template_type','wp-post'),(3719,558,'_elementor_version','3.12.2'),(3720,558,'_elementor_pro_version','3.11.6'),(3721,558,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3722,558,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3726,559,'_wp_page_template','elementor_header_footer'),(3727,559,'_elementor_edit_mode','builder'),(3728,559,'_elementor_template_type','wp-page'),(3729,559,'_elementor_version','3.12.2'),(3730,559,'_elementor_pro_version','3.11.6');
INSERT INTO `wp_postmeta` VALUES (3731,559,'_elementor_data','[{\"id\":\"4073167e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#000000\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"192\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":226,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"cover\",\"background_position_tablet\":\"center center\",\"reverse_order_tablet\":\"reverse-tablet\",\"background_image_mobile\":{\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/What-The-Hell-Digital-Agency.webp\",\"id\":226,\"size\":\"\",\"alt\":\"What The Hell - Digital Agency\",\"source\":\"library\"},\"background_position_mobile\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":-414,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"background_repeat_mobile\":\"no-repeat\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58330742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index_mobile\":1,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3a3f30\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":7.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b50b473\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE ARE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"380\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e4194c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"DIGITAL  AGENCY\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":1,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=046c196\",\"title_color\":\"globals\\/colors?id=primary\"},\"header_size\":\"h1\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30dc58bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses, establish and improve their online presence.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"680\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91d7e6a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=e263706\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"766be977\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"71dd998\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"7da5224\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1bfb9a2\"}],\"shape\":\"circle\",\"columns\":\"3\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"columns_mobile\":\"3\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeIn\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"735bbee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"ekit_all_conditions_list\":[{\"_id\":\"b56b774\"}],\"ekit_section_parallax_multi_items\":[],\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"35a871a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"0c5eae6\"}],\"margin\":{\"unit\":\"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\":\"b3adebe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_sub_title\":\"Journey Towards Success\",\"ekit_heading_sub_title_tag\":\"h2\",\"ekit_heading_title\":\"{{SELECTED}}\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_extra_title\":\"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradise\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_secondary_bg_color_b_stop\":{\"unit\":\"%\",\"size\":\"70\"},\"ekit_heading_focused_title_secondary_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":\"35\"},\"ekit_heading_sub_title_color\":\"#FFFFFF\",\"ekit_heading_focused_title_secondary_bg_color_b\":\"#6a11cb\",\"ekit_heading_background_background\":\"classic\",\"ekit_heading_background_color\":\"#e7e7e7\",\"ekit_heading_background_color_b\":\"#00e030\",\"ekit_heading_use_focused_title_text_fill\":\"\",\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\"},\"ekit_heading_sub_title_typography_typography\":\"custom\",\"ekit_heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"ekit_heading_title_color\":\"#000000\",\"ekit_heading_sub_title_margn\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_style\":\"elementskit-border-divider elementskit-style-long\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"90\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_focused_title_secondary_bg_color\":\"#2575fc\",\"ekit_heading_seperator_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_seperator_color\":\"#d7d7d7\",\"ekit_heading_title_typography_font_style\":\"normal\",\"ekit_heading_use_sub_title_text_fill\":\"\",\"ekit_heading_sub_title_secondary_bg_background\":\"gradient\",\"ekit_heading_focused_title_color\":\"#2575fc\",\"ekit_heading_sub_title_border\":\"\",\"ekit_heading_sub_title_border_color_background\":\"classic\",\"ekit_heading_sub_title_border_color_color\":\"#d7d7d7\",\"ekit_heading_seperator_position\":\"bottom\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":130},\"ekit_heading_title_typography_font_weight\":\"700\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"classic\",\"ekit_heading_title_secondary_bg_color\":\"#7a7a7a\",\"ekit_heading_title_secondary_bg_image\":{\"id\":264,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/text-mask-image-1.jpg\"},\"ekit_heading_title_secondary_bg_position\":\"initial\",\"ekit_heading_title_secondary_bg_repeat\":\"no-repeat\",\"ekit_heading_title_secondary_bg_size\":\"initial\",\"ekit_heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"19ad4e5\"}],\"show_title_left_border\":\"\",\"ekit_heading_sub_title_position\":\"before_title\",\"show_shadow_text\":\"yes\",\"shadow_text_content\":\"Work\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"ekit_heading_sub_title_typography_font_family\":\"Archivo\",\"ekit_heading_sub_title_typography_font_weight\":\"300\",\"ekit_heading_sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"shadow_text_position\":{\"unit\":\"%\",\"top\":\"92\",\"right\":0,\"bottom\":0,\"left\":\"37\",\"isLinked\":false},\"shadow_text_typography_typography\":\"custom\",\"shadow_text_typography_font_family\":\"Archivo\",\"shadow_text_typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_text_transform\":\"uppercase\",\"shadow_text_typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shadow_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"shadow_text_color\":\"#02010100\",\"shadow_text_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"shadow_text_border_color\":\"#FFFFFFBD\",\"ekit_heading_sub_title_outline\":\"yes\",\"subheading_outline_border\":\"solid\",\"subheading_outline_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"subheading_outline_color\":\"#FFFFFF20\",\"subheading_margin_on_text_center\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"23\",\"bottom\":\"7\",\"left\":\"23\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_ypos\":{\"unit\":\"px\",\"size\":-290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"subheading_margin_on_text_center_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"subheading_outline_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"shadow_text_position_tablet\":{\"unit\":\"%\",\"top\":\"82\",\"right\":0,\"bottom\":0,\"left\":\"33\",\"isLinked\":false},\"shadow_text_position_mobile\":{\"unit\":\"%\",\"top\":\"64\",\"right\":0,\"bottom\":0,\"left\":\"23\",\"isLinked\":false},\"shadow_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":76,\"sizes\":[]},\"shadow_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_title_secondary_bg_bg_width\":{\"unit\":\"%\",\"size\":140,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"},\"ekit_heading_title_align_mobile\":\"text_center\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b294ac6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3cf9c87\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"44b82c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e807193\"}],\"_inline_size_tablet\":100,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3cdc199\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Digital\",\"ekit_icon_box_description_text\":\"Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting & even individual targeting is possible.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#F94D39\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#F94D39\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#F94D39\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-desktop\",\"library\":\"fa-solid\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#F94D39\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"eec68b2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Creative\",\"ekit_icon_box_description_text\":\"It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A487FF\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A487FF\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A487FF\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-edit1\",\"library\":\"ekiticons\"},\"ekit_icon_box_badge_control\":\"\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A487FF\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"55eda90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"16ddbe5\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"f088b29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Web Design\",\"ekit_icon_box_description_text\":\"Brand\'s\\/Product\'s\\/Service\'s presence begins with a well-defined and clearly communicated website. \\u00a0So get ready for a more daring start.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-laptop\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#11E2E6\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#11E2E6\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#11E2E6\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#11E2E6\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"18a2857\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Media\",\"ekit_icon_box_description_text\":\"Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"fas fa-atom\",\"library\":\"fa-solid\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#FF9501\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FF9501\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#FF9501\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#FF9501\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"141dedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"7.5\",\"bottom\":\"0\",\"left\":\"7.5\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6215e82\"}],\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":15},\"elements\":[{\"id\":\"a08c875\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Business Strategy\",\"ekit_icon_box_description_text\":\"\\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy \\/ Go to market strategy, We are in.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-light-bulb-1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#A5FF01\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#A5FF01\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#A5FF01\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#A5FF01\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"747bd78\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Design\\/Video\\/Photo\",\"ekit_icon_box_description_text\":\"Design is not Art, Art is about the Artist, & Design is about the user. Blending & Balancing Art, Design, Copy & Business Objective is what we do.\",\"ekit_icon_box_btn_text\":\"Read More\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-photo-camera1\",\"library\":\"ekiticons\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_box_icon_primary_color\":\"#2296FB\",\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#2296FB\",\"ekit_icon_title_typography_group_font_family\":\"Archivo\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"500\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ekit_icon_title_typography_group_letter_spacing\":{\"unit\":\"px\",\"size\":-0.10000000000000001,\"sizes\":[]},\"ekit_icon_description_color\":\"#FFFFFF99\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_typography_group_font_family\":\"Archivo\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"28\",\"bottom\":\"14\",\"left\":\"28\",\"isLinked\":false},\"ekit_icon_box_text_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_typography_group_typography\":\"custom\",\"ekit_icon_box_typography_group_font_family\":\"Archivo\",\"ekit_icon_box_typography_group_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_typography_group_font_weight\":\"500\",\"ekit_icon_box_typography_group_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_icon_box_button_text_color\":\"#101010\",\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#F2F2F2\",\"ekit_icon_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_color_group_color\":\"#F7F7F7\",\"ekit_icon_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"ekit_icon_box_btn_hover_color\":\"#FFFFFF\",\"ekit_icon_box_button_border_hv_color_group_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_icon_box_button_border_hv_color_group_color\":\"#141F72\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_color\":\"#151515\",\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_box_border_hv_group_border\":\"solid\",\"ekit_icon_box_icon_box_border_hv_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"ekit_icon_box_icon_box_border_hv_group_color\":\"#2296FB\",\"ekit_icon_box_infobox_border_radious_hv\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_btn_background_hover_group_background\":\"classic\",\"ekit_icon_box_btn_background_hover_group_color\":\"#5C55E1\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3156A7\",\"ekit_icon_box_show_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_color\":\"#3156A7DE\",\"ekit_icon_box_bg_ovelry_color_hv_background\":\"classic\",\"ekit_icon_box_bg_ovelry_color_hv_color\":\"#3156A7D9\",\"ekit_icon_box_wrapper_align\":\"left\",\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\":{\"horizontal\":-30,\"vertical\":30,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.07)\"},\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_hover_primary_color\":\"#2296FB\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"828cfed\"}],\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"180\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"34\",\"bottom\":\"30\",\"left\":\"34\",\"isLinked\":false},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#151515\",\"ekit_icon_box_header_image\":{\"id\":\"258\",\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder-3.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef12e77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7223502a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"58161715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10a1d826\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b8038b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"721e63d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"41154aed\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT ENGINEERING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f0f9069\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"324bab67\",\"elType\":\"widget\",\"settings\":{\"text\":\"PRODUCT CONSULTATION\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"780b1bb5\",\"elType\":\"widget\",\"settings\":{\"text\":\"ARCHITECTURE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b6c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"76d38706\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"125445d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2ddd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3edc879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"217eda04\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI AND UX DESIGN\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9c94f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"WEBSITE DESIGN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24ef1ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"APP DEVELOPMENT\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73ebd0c8\",\"elType\":\"widget\",\"settings\":{\"text\":\"PROTOTYPING\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e4d181c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"64920616\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5e42cb67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":21.440000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584aaf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4198f4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":78.560000000000002,\"_inline_size_tablet\":50,\"_inline_size_mobile\":75},\"elements\":[{\"id\":\"71c8ff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT BRANDING\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"520821\",\"elType\":\"widget\",\"settings\":{\"text\":\"MARKETING STRATEGY\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7c9b0eb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"BRAND ANALYSIS\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"42656851\",\"elType\":\"widget\",\"settings\":{\"text\":\"SUPPLY CHAIN\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#3F3F3F\",\"hover_color\":\"#251AFF\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0a1178\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b1d8dd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"slideshow\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31f1caf9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a7a7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":253,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-6.webp\"},{\"id\":254,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-7.webp\"}],\"background_slideshow_background_size_mobile\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6cb64a8b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":215,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aea09bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"226b322a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE BRING YOUR IDEAS TO LIFE\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3415517f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5fa6d379\",\"elType\":\"widget\",\"settings\":{\"title\":\"We love creating\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fc5f90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bebc5ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#251AFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=e263706\"},\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed45830\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47aa131\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bffb6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRAND BUILDING ROAD MAP\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba357ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"07cbfba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Speed up to win the race\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92d1d34\",\"elType\":\"widget\",\"settings\":{\"twae_list\":[{\"twae_story_title\":\"Strategy\",\"twae_description\":\"<p>Environmental Scanning of Brand, Understanding of Product\\/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity\\/Sales.<\\/p>\",\"twae_year\":\"1994\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"9654aa1\",\"twae_show_year_label\":\"\",\"twae_story_icon\":{\"value\":\"fas fa-lightbulb\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Creation of Brand Identity\",\"twae_description\":\"<p>Finalizing a brand manual as per the brand, Website creation\\/ optimization, and social channels creation\\/ optimization.<\\/p>\",\"twae_year\":\"2005\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"de1eb1b\",\"twae_story_icon\":{\"value\":\"fas fa-fingerprint\",\"library\":\"fa-solid\"}},{\"twae_story_title\":\"Ideation and Execution of Content\",\"twae_description\":\"<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.<\\/p>\",\"twae_year\":\"2008\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_image\":{\"url\":\"\",\"id\":\"\"},\"twae_video_url\":\"\",\"_id\":\"61e2505\",\"twae_story_icon\":{\"value\":\"fas fa-head-side-virus\",\"library\":\"fa-solid\"}},{\"_id\":\"f2df83e\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Graphic Designing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>POS materials - Infographics, Brochures, Packaging, etc.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-pen-fancy\",\"library\":\"fa-solid\"}},{\"_id\":\"ee3fa2b\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Advertisement and Promotion\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-ad\",\"library\":\"fa-solid\"}},{\"_id\":\"c563b2c\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"New Age Media \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"}},{\"_id\":\"b547c70\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Complete Performance Marketing\",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-funnel-dollar\",\"library\":\"fa-solid\"}},{\"_id\":\"a59a194\",\"twae_year\":\"2022\",\"twae_date_label\":\"\",\"twae_extra_label\":\"\",\"twae_story_title\":\"Services \",\"twae_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"twae_description\":\"<p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.<\\/p>\",\"twae_story_icon\":{\"value\":\"fas fa-cogs\",\"library\":\"fa-solid\"}}],\"content-alignment\":\"left\",\"twae_icon_position\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"twae_line_color\":\"#0D1B96\",\"twae_icon_color\":\"#2F0C79\",\"twae_space_between\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"twae_story_bgcolor\":\"#E5E5E5\",\"twae_cbox_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"twae_story_title_color\":\"#251AFF\",\"twae_icon_bgcolor\":\"#798CF9\"},\"elements\":[],\"widgetType\":\"timeline-widget-addon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46497f7b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"263dcbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18434ba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"GENERATING NEW IDEAS,\\nSOLVING REAL PROBLEMS\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f890c1c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4008d7f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"our finished product\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1813b53a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"background_attachment\":\"fixed\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"1485fa06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"392378bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"217f0010\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"65578ed\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":121,\"suffix\":\"+\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6f0984fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"48e60710\",\"elType\":\"widget\",\"settings\":{\"title\":\"SATISFIED CLIENTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"e08624c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5d6192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.908999999999999,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"24f0f74e\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":528,\"suffix\":\"+\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"36a47dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.088999999999999,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eb6b888\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMPLETED PROJECTS\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3eeed4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"6efe42cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5625f308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.387,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"2782142d\",\"elType\":\"widget\",\"settings\":{\"thousand_separator\":\"\",\"title\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"globals\\/typography?id=03de200\"},\"ending_number\":24},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3c7460ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.610999999999997,\"content_position\":\"center\",\"_inline_size_mobile\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":false}},\"elements\":[{\"id\":\"406d131d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ongoing projects\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"90\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"title_color\":\"globals\\/colors?id=a41d1b1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405c12c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"445765f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e179740\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHY YOU SHOULD CHOOSE US\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76e18e42\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"647e1c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"this is the reason\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22cc5023\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c83b34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"7bd32be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121b4b35\",\"elType\":\"widget\",\"settings\":{\"title\":\"INDUSTRY EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ebe181\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b0bdffb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3db8b467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600},\"elements\":[{\"id\":\"2089f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d338dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEEP IT EXPERTISE\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73842b85\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aaa7d46\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7659e7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#251AFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"id\":20,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-e1617856194424.jpg\"},\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":21,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg\"},\"background_hover_size\":\"cover\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":800},\"elements\":[{\"id\":\"5fa3f7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"align\":\"right\",\"title_color\":\"#FFFFFF45\",\"_margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":\"-50\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=5e56036\"},\"blend_mode\":\"saturation\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"769a4887\",\"elType\":\"widget\",\"settings\":{\"title\":\"DEDICATED SOLUTION\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"655b1cd7\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"editor\":\"<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"82392f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3f2b9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"60\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"70ac6279\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":22,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-6.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":23,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-6.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"76ae214f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"53e9f46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-5.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":25,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-5.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"444dc6fd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4b50cd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":26,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-4.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":27,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-4.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a4be795\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"538e90a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":29,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-3.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d813fd5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7a9d1bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":31,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-2.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61e7818b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1dc15df1\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":32,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/gray_Artboard-1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"id\":33,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/blue_Artboard-1.jpg\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F2F2F2\",\"_inline_size_tablet\":33,\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48655177\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e721c84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F5F5F5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1400,\"sizes\":[]},\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"50\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92480eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50bb6157\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ed45630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":34,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_slideshow_transition_duration\":800,\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":251,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-5.webp\"},{\"id\":247,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-3.webp\"},{\"id\":246,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/WTH-4.webp\"}],\"_inline_size_tablet\":100,\"background_slideshow_background_size_tablet\":\"cover\",\"background_slideshow_background_position_tablet\":\"center center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"7b5dcc5\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":470,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1cf2ccb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"48434119\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PHILOSOPHY\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96921a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d3da2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR VISION\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\",\"title_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74fc0a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.<\\/p>\",\"text_color\":\"#3F3F3F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6df9f0ce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21366b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f05c9eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"READ OUR BLOG\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b41e6a5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e4e87d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We also do writing\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61b4109\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-180\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4fb4d6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg\"},\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"background_position\":\"center center\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"696884ca\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c3c2331\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR WORKS\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"494f88cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design skills\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d784643\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2771ae33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/runda_\\u041c\\u043e\\u043d\\u0442\\u0430\\u0436\\u043d\\u0430\\u044f-\\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c-1_bg3.jpg\"},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"3242c7f8\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4e0d787e\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR CONTACTS\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2da921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s work\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b86af0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"align\":\"left\",\"selected_icon\":{\"value\":\"icon icon-double-angle-pointing-to-right\",\"library\":\"ekiticons\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"25\",\"isLinked\":false},\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_border\":\"solid\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=accent\",\"hover_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_hover_border_color\":\"globals\\/colors?id=accent\",\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6175e93b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2667adf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd7e51f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3732,559,'_elementor_page_assets','a:1:{s:6:\"styles\";a:43:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";}}'),(3733,559,'_elementor_controls_usage','a:12:{s:7:\"divider\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:8;s:3:\"gap\";i:8;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:16:\"_animation_delay\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:33;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:33;s:11:\"header_size\";i:12;s:5:\"align\";i:17;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:21;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:10;s:16:\"_animation_delay\";i:5;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:10;s:13:\"_border_color\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:11:\"title_color\";i:3;s:10:\"blend_mode\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:7;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:15;s:12:\"align_tablet\";i:9;s:5:\"align\";i:5;s:13:\"selected_icon\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:14:{s:17:\"button_text_color\";i:11;s:16:\"background_color\";i:11;s:12:\"border_width\";i:16;s:13:\"border_radius\";i:7;s:12:\"text_padding\";i:16;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:13:\"border_border\";i:15;s:12:\"border_color\";i:1;s:15:\"hover_animation\";i:9;s:11:\"hover_color\";i:9;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:9;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:6:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:7:\"columns\";i:1;s:5:\"align\";i:1;s:14:\"columns_mobile\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:45;s:21:\"space_between_widgets\";i:3;s:16:\"content_position\";i:7;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:11;s:6:\"margin\";i:15;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:15;s:15:\"animation_delay\";i:10;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:14:{s:21:\"background_background\";i:15;s:28:\"background_slideshow_gallery\";i:2;s:16:\"background_color\";i:4;s:16:\"background_image\";i:12;s:15:\"background_size\";i:11;s:27:\"background_hover_background\";i:9;s:22:\"background_hover_image\";i:9;s:21:\"background_hover_size\";i:3;s:27:\"background_hover_transition\";i:3;s:19:\"background_position\";i:8;s:25:\"background_gradient_angle\";i:1;s:40:\"background_slideshow_transition_duration\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:9;s:8:\"overflow\";i:1;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:14;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:11:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:7;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:25:\"background_gradient_angle\";i:1;s:16:\"background_image\";i:5;s:15:\"background_size\";i:3;s:15:\"background_xpos\";i:1;s:17:\"background_repeat\";i:1;s:21:\"background_attachment\";i:4;s:36:\"background_slideshow_background_size\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:11;s:6:\"margin\";i:3;s:7:\"z_index\";i:1;}s:19:\"_section_responsive\";a:3:{s:20:\"reverse_order_mobile\";i:1;s:20:\"reverse_order_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}}}s:19:\"elementskit-heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:11;s:8:\"controls\";a:3:{s:7:\"content\";a:5:{s:29:\"ekit_heading_section_subtitle\";a:6:{s:22:\"ekit_heading_sub_title\";i:1;s:26:\"ekit_heading_sub_title_tag\";i:1;s:27:\"ekit_heading_sub_title_show\";i:1;s:29:\"ekit_heading_sub_title_border\";i:1;s:31:\"ekit_heading_sub_title_position\";i:1;s:30:\"ekit_heading_sub_title_outline\";i:1;}s:26:\"ekit_heading_section_title\";a:1:{s:18:\"ekit_heading_title\";i:1;}s:32:\"ekit_heading_section_extra_title\";a:2:{s:24:\"ekit_heading_extra_title\";i:1;s:37:\"ekit_heading_section_extra_title_show\";i:1;}s:30:\"ekit_heading_section_seperator\";a:4:{s:28:\"ekit_heading_seperator_style\";i:1;s:31:\"ekit_heading_seperator_position\";i:1;s:27:\"ekit_heading_show_seperator\";i:1;s:28:\"ekit_heading_seperator_image\";i:1;}s:19:\"shadow_text_section\";a:2:{s:16:\"show_shadow_text\";i:1;s:19:\"shadow_text_content\";i:1;}}s:5:\"style\";a:6:{s:28:\"ekit_heading_section_general\";a:1:{s:24:\"ekit_heading_title_align\";i:1;}s:40:\"ekit_heading_section_focused_title_style\";a:18:{s:33:\"ekit_heading_use_focused_title_bg\";i:1;s:50:\"ekit_heading_focused_title_secondary_bg_background\";i:1;s:52:\"ekit_heading_focused_title_secondary_bg_color_b_stop\";i:1;s:54:\"ekit_heading_focused_title_secondary_bg_gradient_angle\";i:1;s:47:\"ekit_heading_focused_title_secondary_bg_color_b\";i:1;s:45:\"ekit_heading_focused_title_secondary_bg_color\";i:1;s:32:\"ekit_heading_focused_title_color\";i:1;s:32:\"ekit_heading_use_title_text_fill\";i:1;s:42:\"ekit_heading_title_secondary_bg_background\";i:1;s:37:\"ekit_heading_title_secondary_bg_color\";i:1;s:37:\"ekit_heading_title_secondary_bg_image\";i:1;s:40:\"ekit_heading_title_secondary_bg_position\";i:1;s:38:\"ekit_heading_title_secondary_bg_repeat\";i:1;s:36:\"ekit_heading_title_secondary_bg_size\";i:1;s:48:\"ekit_heading_focused_title_typography_typography\";i:1;s:47:\"ekit_heading_focused_title_typography_font_size\";i:1;s:36:\"ekit_heading_title_secondary_bg_ypos\";i:1;s:40:\"ekit_heading_title_secondary_bg_bg_width\";i:1;}s:36:\"ekit_heading_section_sub_title_style\";a:14:{s:28:\"ekit_heading_sub_title_color\";i:1;s:44:\"ekit_heading_sub_title_typography_typography\";i:1;s:43:\"ekit_heading_sub_title_typography_font_size\";i:1;s:28:\"ekit_heading_sub_title_margn\";i:1;s:36:\"ekit_heading_use_sub_title_text_fill\";i:1;s:46:\"ekit_heading_sub_title_secondary_bg_background\";i:1;s:48:\"ekit_heading_sub_title_typography_letter_spacing\";i:1;s:45:\"ekit_heading_sub_title_typography_font_family\";i:1;s:45:\"ekit_heading_sub_title_typography_font_weight\";i:1;s:45:\"ekit_heading_sub_title_typography_line_height\";i:1;s:25:\"subheading_outline_border\";i:1;s:24:\"subheading_outline_width\";i:1;s:24:\"subheading_outline_color\";i:1;s:18:\"subheading_padding\";i:1;}s:32:\"ekit_heading_section_title_style\";a:7:{s:24:\"ekit_heading_title_color\";i:1;s:25:\"ekit_heading_title_margin\";i:1;s:40:\"ekit_heading_title_typography_font_style\";i:1;s:40:\"ekit_heading_title_typography_typography\";i:1;s:39:\"ekit_heading_title_typography_font_size\";i:1;s:41:\"ekit_heading_title_typography_font_weight\";i:1;s:41:\"ekit_heading_title_typography_line_height\";i:1;}s:36:\"ekit_heading_section_seperator_style\";a:3:{s:28:\"ekit_heading_seperator_width\";i:1;s:29:\"ekit_heading_seperator_margin\";i:1;s:28:\"ekit_heading_seperator_color\";i:1;}s:25:\"shadow_text_style_section\";a:10:{s:20:\"shadow_text_position\";i:1;s:33:\"shadow_text_typography_typography\";i:1;s:34:\"shadow_text_typography_font_family\";i:1;s:32:\"shadow_text_typography_font_size\";i:1;s:37:\"shadow_text_typography_text_transform\";i:1;s:34:\"shadow_text_typography_line_height\";i:1;s:37:\"shadow_text_typography_letter_spacing\";i:1;s:17:\"shadow_text_color\";i:1;s:24:\"shadow_text_border_width\";i:1;s:24:\"shadow_text_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:20:\"elementskit-icon-box\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:9;s:8:\"controls\";a:2:{s:7:\"content\";a:4:{s:13:\"ekit_icon_box\";a:4:{s:24:\"ekit_icon_box_title_text\";i:6;s:30:\"ekit_icon_box_description_text\";i:6;s:26:\"ekit_icon_box_header_icons\";i:6;s:26:\"ekit_icon_box_header_image\";i:6;}s:28:\"ekit_icon_box_section_button\";a:3:{s:22:\"ekit_icon_box_btn_text\";i:6;s:24:\"ekit_icon_box_enable_btn\";i:6;s:30:\"ekit_icon_box_show_global_link\";i:2;}s:31:\"ekit_icon_box_badge_control_tab\";a:1:{s:27:\"ekit_icon_box_badge_control\";i:2;}s:30:\"ekit_icon_box_section_settings\";a:2:{s:27:\"ekit_icon_box_icon_position\";i:6;s:35:\"ekit_icon_box_text_align_responsive\";i:6;}}s:5:\"style\";a:5:{s:31:\"ekit_icon_section_style_content\";a:16:{s:43:\"ekit_icon_title_typography_group_typography\";i:6;s:49:\"ekit_icon_description_typography_group_typography\";i:6;s:28:\"ekit_icon_title_bottom_space\";i:6;s:21:\"ekit_icon_title_color\";i:6;s:27:\"ekit_icon_title_color_hover\";i:6;s:44:\"ekit_icon_title_typography_group_font_family\";i:6;s:42:\"ekit_icon_title_typography_group_font_size\";i:6;s:44:\"ekit_icon_title_typography_group_font_weight\";i:6;s:44:\"ekit_icon_title_typography_group_line_height\";i:6;s:47:\"ekit_icon_title_typography_group_letter_spacing\";i:6;s:27:\"ekit_icon_description_color\";i:6;s:33:\"ekit_icon_description_color_hover\";i:6;s:50:\"ekit_icon_description_typography_group_font_family\";i:6;s:48:\"ekit_icon_description_typography_group_font_size\";i:6;s:50:\"ekit_icon_description_typography_group_font_weight\";i:6;s:50:\"ekit_icon_description_typography_group_line_height\";i:6;}s:32:\"ekit_icon_box_section_style_icon\";a:5:{s:32:\"ekit_icon_box_icon_primary_color\";i:6;s:19:\"ekit_icon_icon_size\";i:6;s:24:\"ekit_icon_box_icon_space\";i:6;s:30:\"ekit_icon_box_icon_line_height\";i:6;s:33:\"ekit_icon_box_hover_primary_color\";i:6;}s:38:\"ekit_icon_box_section_background_style\";a:12:{s:32:\"ekit_icon_box_infobox_bg_padding\";i:6;s:40:\"ekit_icon_box_iocnbox_border_group_width\";i:6;s:40:\"ekit_icon_box_iocnbox_border_group_color\";i:6;s:36:\"ekit_icon_box_infobox_border_radious\";i:6;s:45:\"ekit_icon_box_icon_box_border_hv_group_border\";i:6;s:44:\"ekit_icon_box_icon_box_border_hv_group_width\";i:6;s:44:\"ekit_icon_box_icon_box_border_hv_group_color\";i:6;s:39:\"ekit_icon_box_infobox_border_radious_hv\";i:6;s:42:\"ekit_icon_box_infobox_bg_hover_group_color\";i:6;s:52:\"ekit_icon_box_infobox_box_shadow_hv_group_box_shadow\";i:6;s:41:\"ekit_icon_box_infobox_bg_group_background\";i:6;s:36:\"ekit_icon_box_infobox_bg_group_color\";i:6;}s:27:\"ekit_icon_box_section_style\";a:18:{s:26:\"ekit_icon_box_text_padding\";i:6;s:25:\"ekit_icon_box_text_margin\";i:6;s:41:\"ekit_icon_box_typography_group_typography\";i:6;s:42:\"ekit_icon_box_typography_group_font_family\";i:6;s:40:\"ekit_icon_box_typography_group_font_size\";i:6;s:42:\"ekit_icon_box_typography_group_font_weight\";i:6;s:42:\"ekit_icon_box_typography_group_line_height\";i:6;s:31:\"ekit_icon_box_button_text_color\";i:6;s:45:\"ekit_icon_box_btn_background_group_background\";i:6;s:40:\"ekit_icon_box_btn_background_group_color\";i:6;s:45:\"ekit_icon_box_button_border_color_group_width\";i:6;s:45:\"ekit_icon_box_button_border_color_group_color\";i:6;s:31:\"ekit_icon_box_btn_border_radius\";i:6;s:29:\"ekit_icon_box_btn_hover_color\";i:6;s:48:\"ekit_icon_box_button_border_hv_color_group_width\";i:6;s:48:\"ekit_icon_box_button_border_hv_color_group_color\";i:6;s:51:\"ekit_icon_box_btn_background_hover_group_background\";i:6;s:46:\"ekit_icon_box_btn_background_hover_group_color\";i:6;}s:37:\"ekit_icon_box_section_bg_ovelry_style\";a:4:{s:24:\"ekit_icon_box_show_image\";i:6;s:38:\"ekit_icon_box_image_ovelry_color_color\";i:6;s:43:\"ekit_icon_box_bg_ovelry_color_hv_background\";i:6;s:38:\"ekit_icon_box_bg_ovelry_color_hv_color\";i:6;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:8;}}}}s:21:\"timeline-widget-addon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"twae_content_section\";a:1:{s:9:\"twae_list\";i:1;}s:19:\"twae_layout_section\";a:2:{s:17:\"content-alignment\";i:1;s:18:\"twae_icon_position\";i:1;}}s:5:\"style\";a:4:{s:17:\"twae_line_section\";a:1:{s:15:\"twae_line_color\";i:1;}s:17:\"twae_icon_section\";a:2:{s:15:\"twae_icon_color\";i:1;s:17:\"twae_icon_bgcolor\";i:1;}s:17:\"twae_cbox_section\";a:3:{s:18:\"twae_space_between\";i:1;s:18:\"twae_story_bgcolor\";i:1;s:22:\"twae_cbox_border_width\";i:1;}s:25:\"twae_storycontent_section\";a:1:{s:22:\"twae_story_title_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:18:\"thousand_separator\";i:3;s:5:\"title\";i:3;s:13:\"ending_number\";i:3;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}}'),(3735,560,'_wp_page_template','elementor_header_footer'),(3736,560,'_elementor_edit_mode','builder'),(3737,560,'_elementor_template_type','wp-post'),(3738,560,'_elementor_version','3.12.2'),(3739,560,'_elementor_pro_version','3.11.6'),(3740,560,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3741,560,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3743,561,'_wp_page_template','elementor_header_footer'),(3744,561,'_elementor_edit_mode','builder'),(3745,561,'_elementor_template_type','wp-post'),(3746,561,'_elementor_version','3.12.2'),(3747,561,'_elementor_pro_version','3.11.6'),(3748,561,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3749,561,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3751,562,'_wp_page_template','elementor_header_footer'),(3752,562,'_elementor_edit_mode','builder'),(3753,562,'_elementor_template_type','wp-post'),(3754,562,'_elementor_version','3.12.2'),(3755,562,'_elementor_pro_version','3.11.6'),(3756,562,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-150\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3757,562,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3762,563,'_wp_page_template','elementor_header_footer'),(3763,563,'_elementor_edit_mode','builder'),(3764,563,'_elementor_template_type','wp-post'),(3765,563,'_elementor_version','3.12.2'),(3766,563,'_elementor_pro_version','3.11.6'),(3767,563,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-150\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3768,563,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3770,564,'_wp_page_template','elementor_header_footer'),(3771,564,'_elementor_edit_mode','builder'),(3772,564,'_elementor_template_type','wp-post'),(3773,564,'_elementor_version','3.12.2'),(3774,564,'_elementor_pro_version','3.11.6'),(3775,564,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-150\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3776,564,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3778,565,'_wp_page_template','elementor_header_footer'),(3779,565,'_elementor_edit_mode','builder'),(3780,565,'_elementor_template_type','wp-post'),(3781,565,'_elementor_version','3.12.2'),(3782,565,'_elementor_pro_version','3.11.6'),(3783,565,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-140\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3784,565,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3789,566,'_wp_page_template','elementor_header_footer'),(3790,566,'_elementor_edit_mode','builder'),(3791,566,'_elementor_template_type','wp-post'),(3792,566,'_elementor_version','3.12.2'),(3793,566,'_elementor_pro_version','3.11.6'),(3794,566,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-140\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3795,566,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3797,567,'_wp_page_template','elementor_header_footer'),(3798,567,'_elementor_edit_mode','builder'),(3799,567,'_elementor_template_type','wp-post'),(3800,567,'_elementor_version','3.12.2'),(3801,567,'_elementor_pro_version','3.11.6'),(3802,567,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-140\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3803,567,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3805,568,'_wp_page_template','elementor_header_footer'),(3806,568,'_elementor_edit_mode','builder'),(3807,568,'_elementor_template_type','wp-post'),(3808,568,'_elementor_version','3.12.2'),(3809,568,'_elementor_pro_version','3.11.6'),(3810,568,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3811,568,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3814,569,'_wp_page_template','elementor_header_footer'),(3815,569,'_elementor_edit_mode','builder'),(3816,569,'_elementor_template_type','wp-post'),(3817,569,'_elementor_version','3.12.2'),(3818,569,'_elementor_pro_version','3.11.6'),(3819,569,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3820,569,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3821,570,'_wp_page_template','elementor_header_footer'),(3822,570,'_elementor_edit_mode','builder'),(3823,570,'_elementor_template_type','wp-post'),(3824,570,'_elementor_version','3.12.2'),(3825,570,'_elementor_pro_version','3.11.6'),(3826,570,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3827,570,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3828,571,'_wp_page_template','elementor_header_footer'),(3829,571,'_elementor_edit_mode','builder'),(3830,571,'_elementor_template_type','wp-post'),(3831,571,'_elementor_version','3.12.2'),(3832,571,'_elementor_pro_version','3.11.6'),(3833,571,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3834,571,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3837,572,'_wp_page_template','elementor_header_footer'),(3838,572,'_elementor_edit_mode','builder'),(3839,572,'_elementor_template_type','wp-post'),(3840,572,'_elementor_version','3.12.2'),(3841,572,'_elementor_pro_version','3.11.6'),(3842,572,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3843,572,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3845,573,'_wp_page_template','elementor_header_footer'),(3846,573,'_elementor_edit_mode','builder'),(3847,573,'_elementor_template_type','wp-post'),(3848,573,'_elementor_version','3.12.2'),(3849,573,'_elementor_pro_version','3.11.6'),(3850,573,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3851,573,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3853,574,'_wp_page_template','elementor_header_footer'),(3854,574,'_elementor_edit_mode','builder'),(3855,574,'_elementor_template_type','wp-post'),(3856,574,'_elementor_version','3.12.2'),(3857,574,'_elementor_pro_version','3.11.6'),(3858,574,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-132\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3859,574,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3862,575,'_wp_page_template','elementor_header_footer'),(3863,575,'_elementor_edit_mode','builder'),(3864,575,'_elementor_template_type','wp-post'),(3865,575,'_elementor_version','3.12.2'),(3866,575,'_elementor_pro_version','3.11.6'),(3867,575,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-132\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3868,575,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3869,576,'_wp_page_template','elementor_header_footer'),(3870,576,'_elementor_edit_mode','builder'),(3871,576,'_elementor_template_type','wp-post'),(3872,576,'_elementor_version','3.12.2'),(3873,576,'_elementor_pro_version','3.11.6'),(3874,576,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-132\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3875,576,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3876,577,'_wp_page_template','elementor_header_footer'),(3877,577,'_elementor_edit_mode','builder'),(3878,577,'_elementor_template_type','wp-post'),(3879,577,'_elementor_version','3.12.2'),(3880,577,'_elementor_pro_version','3.11.6'),(3881,577,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3882,577,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3885,578,'_wp_page_template','elementor_header_footer'),(3886,578,'_elementor_edit_mode','builder'),(3887,578,'_elementor_template_type','wp-post'),(3888,578,'_elementor_version','3.12.2'),(3889,578,'_elementor_pro_version','3.11.6'),(3890,578,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3891,578,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3893,579,'_wp_page_template','elementor_header_footer'),(3894,579,'_elementor_edit_mode','builder'),(3895,579,'_elementor_template_type','wp-post'),(3896,579,'_elementor_version','3.12.2'),(3897,579,'_elementor_pro_version','3.11.6'),(3898,579,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":74,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3899,579,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3901,580,'_wp_page_template','elementor_header_footer'),(3902,580,'_elementor_edit_mode','builder'),(3903,580,'_elementor_template_type','wp-post'),(3904,580,'_elementor_version','3.12.2'),(3905,580,'_elementor_pro_version','3.11.6'),(3906,580,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":61,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3907,580,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3912,581,'_wp_page_template','elementor_header_footer'),(3913,581,'_elementor_edit_mode','builder'),(3914,581,'_elementor_template_type','wp-post'),(3915,581,'_elementor_version','3.12.2'),(3916,581,'_elementor_pro_version','3.11.6'),(3917,581,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":61,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3918,581,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3920,582,'_wp_page_template','elementor_header_footer'),(3921,582,'_elementor_edit_mode','builder'),(3922,582,'_elementor_template_type','wp-post'),(3923,582,'_elementor_version','3.12.2'),(3924,582,'_elementor_pro_version','3.11.6'),(3925,582,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":61,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3926,582,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3928,583,'_wp_page_template','elementor_header_footer'),(3929,583,'_elementor_edit_mode','builder'),(3930,583,'_elementor_template_type','wp-post'),(3931,583,'_elementor_version','3.12.2'),(3932,583,'_elementor_pro_version','3.11.6'),(3933,583,'_elementor_data','[{\"id\":\"772805f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-128\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-135\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation_delay\":200,\"background_color\":\"#FFFFFF00\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-105\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5a35e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_inline_size_tablet\":18,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#251AFF00\"},\"elements\":[{\"id\":\"7c2c220e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"85\",\"bottom\":\"-35\",\"left\":\"85\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38ee10d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"content_position\":\"center\",\"_inline_size_tablet\":82,\"_inline_size_mobile\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57ed9257\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27480c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"_inline_size_tablet\":10,\"content_position_tablet\":\"center\",\"_inline_size_mobile\":25,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"align_mobile\":\"flex-end\",\"space_between_widgets_mobile\":20},\"elements\":[{\"id\":\"8818d43\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Poppins\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_dropdown_item\":\"#3E3E3E\",\"resp_align\":\"right\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Poppins\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"dropdown_typography_font_weight\":\"800\",\"toggle_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"e5d23d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"_inline_size_tablet\":90,\"_inline_size_mobile\":61,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a7d6375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"button_text_color\":\"#251AFF\",\"background_color\":\"#251AFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"20\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e263706\",\"button_text_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=accent\",\"button_hover_border_color\":\"globals\\/colors?id=accent\"},\"link\":{\"url\":\"https:\\/\\/kit.juliha.com\\/runda\\/contact-us\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3934,583,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3936,8,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:15:\"hover_animation\";i:1;s:5:\"width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:16:\"content_position\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:15:\"animation_delay\";i:2;}s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:13:\"navmenu_align\";i:1;s:10:\"resp_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:5:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:15:\"color_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:5:{s:19:\"color_dropdown_item\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_family\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;}s:12:\"style_toggle\";a:1:{s:12:\"toggle_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:12:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";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:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:2;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:6:\"margin\";i:1;s:7:\"z_index\";i:1;}s:15:\"section_effects\";a:1:{s:15:\"animation_delay\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(3938,584,'_wp_page_template','elementor_header_footer'),(3939,584,'_elementor_edit_mode','builder'),(3940,584,'_elementor_template_type','wp-post'),(3941,584,'_elementor_version','3.12.2'),(3942,584,'_elementor_pro_version','3.11.6'),(3943,584,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3944,584,'_elementor_page_assets','a:0:{}'),(3945,585,'_wp_page_template','elementor_header_footer'),(3946,585,'_elementor_edit_mode','builder'),(3947,585,'_elementor_template_type','wp-post'),(3948,585,'_elementor_version','3.12.2'),(3949,585,'_elementor_pro_version','3.11.6'),(3950,585,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3951,585,'_elementor_page_assets','a:0:{}'),(3952,586,'_wp_page_template','elementor_header_footer'),(3953,586,'_elementor_edit_mode','builder'),(3954,586,'_elementor_template_type','wp-post'),(3955,586,'_elementor_version','3.12.2'),(3956,586,'_elementor_pro_version','3.11.6'),(3957,586,'_elementor_data','[{\"id\":\"5746c367\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1a77d58a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.832000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":36},\"elements\":[{\"id\":\"2849e485\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"250\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image\":{\"id\":461,\"url\":\"https:\\/\\/whatthehell-new.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/03\\/Ideacloud-white-logo-01.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"185\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"motion_fx_mouseTrack_effect\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c1e7981\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDRESS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d35ada9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1f4a1bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b6d8406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@whatthehell.co<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76c9dd8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHONE\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3ac5d19\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5174ab6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>93156 66436<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e7ea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.472999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8688b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"USEFUL LINKS\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bda684\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209d6372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1897738b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-1\",\"layout\":\"vertical\",\"pointer\":\"underline\",\"animation_text\":\"sink\",\"color_menu_item_hover\":\"#DEDEDE\",\"pointer_color_menu_item_hover\":\"#251AFF\",\"color_dropdown_item_hover\":\"#251AFF\",\"dropdown_divider_border\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"dropdown\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"-15\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=e263706\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"background_color_dropdown_item\":\"globals\\/colors?id=primary\",\"dropdown_typography_typography\":\"globals\\/typography?id=text\"},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"color_dropdown_item\":\"#2B2B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"691eb046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de1b5c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR LOCATION\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#251AFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"599f251b\",\"elType\":\"widget\",\"settings\":{\"address\":\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"zoom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc77225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#474747\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=text\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e83e11b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d3e59c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 Ideas Cloud<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3958,586,'_elementor_page_assets','a:0:{}'),(3959,139,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:27:\"motion_fx_mouseTrack_effect\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:5:\"align\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:5;s:8:\"_padding\";i:5;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:5;s:13:\"_border_color\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:1:{s:4:\"menu\";i:1;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:5:{s:7:\"pointer\";i:1;s:14:\"animation_text\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:3:{s:25:\"color_dropdown_item_hover\";i:1;s:23:\"dropdown_divider_border\";i:1;s:19:\"color_dropdown_item\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:2;}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:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:6:\"height\";i:1;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(3961,11,'_elementor_css','a:6:{s:4:\"time\";i:1694235773;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3962,144,'_elementor_css','a:6:{s:4:\"time\";i:1694235780;s:5:\"fonts\";a:1:{i:0;s:7:\"Archivo\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";i:4;s:8:\"fa-solid\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3963,8,'_elementor_css','a:6:{s:4:\"time\";i:1694235780;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3964,139,'_elementor_css','a:6:{s:4:\"time\";i:1694235781;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3965,165,'_elementor_css','a:6:{s:4:\"time\";i:1714308387;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"fa-brands\";i:3;s:9:\"ekiticons\";}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=587 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2023-03-15 11:28:38','2023-03-15 11:28:38','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2023-03-15 11:28:38','2023-03-15 11:28:38','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=1',0,'post','',1),(2,1,'2023-03-15 11:28:38','2023-03-15 11:28:38','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://whatthehell-new.in8.cdn-alpha.com/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','','','2023-03-15 11:28:38','2023-03-15 11:28:38','',0,'https://whatthehell-new.in8.cdn-alpha.com/?page_id=2',0,'page','',0),(3,1,'2023-03-15 11:28:38','2023-03-15 11:28:38','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://whatthehell-new.in8.cdn-alpha.com.</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 your data is sent</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','','','2023-03-15 11:28:38','2023-03-15 11:28:38','',0,'https://whatthehell-new.in8.cdn-alpha.com/?page_id=3',0,'page','',0),(5,1,'2023-03-15 12:58:43','2023-03-15 12:58:43','','Default Kit','','publish','closed','closed','','default-kit','','','2023-03-15 12:58:43','2023-03-15 12:58:43','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=5',0,'elementor_library','',0),(6,1,'2023-03-15 13:06:44','2023-03-15 13:06:44','','Runda - Creative Agency Elementor Template Kit','','publish','closed','closed','','runda-creative-agency-elementor-template-kit','','','2023-03-15 13:06:45','2023-03-15 13:06:45','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=runda-creative-agency-elementor-template-kit',0,'elementor_library','',0),(7,1,'2023-03-15 13:06:45','2023-03-15 13:06:45','','Runda - Creative Agency Elementor Template Kit','','inherit','closed','closed','','6-revision-v1','','','2023-03-15 13:06:45','2023-03-15 13:06:45','',6,'https://whatthehell-new.in8.cdn-alpha.com/?p=7',0,'revision','',0),(8,1,'2023-03-16 06:41:16','2023-03-16 06:41:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','publish','closed','closed','','header','','','2023-05-04 18:45:30','2023-05-04 18:45:30','',0,'https://whatthehell-new.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=8',0,'elementor-hf','',0),(9,1,'2023-03-16 06:41:16','2023-03-16 06:41:16','','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-16 06:41:16','2023-03-16 06:41:16','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=9',0,'revision','',0),(11,1,'2023-03-17 05:23:05','2023-03-17 05:23:05','','Runda - Creative Agency Elementor Template Kit','','publish','closed','closed','','runda-creative-agency-elementor-template-kit-2','','','2023-03-17 05:23:06','2023-03-17 05:23:06','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=runda-creative-agency-elementor-template-kit-2',0,'elementor_library','',0),(12,1,'2023-03-17 05:23:06','2023-03-17 05:23:06','','Runda - Creative Agency Elementor Template Kit','','inherit','closed','closed','','11-revision-v1','','','2023-03-17 05:23:06','2023-03-17 05:23:06','',11,'https://whatthehell-new.in8.cdn-alpha.com/?p=12',0,'revision','',0),(13,1,'2023-03-17 05:23:09','2023-03-17 05:23:09','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_7750131a\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_27495080\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5eefad99\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_7dded81a\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_6d494489\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2187c184\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home 1','','publish','closed','closed','','home-1','','','2023-03-17 05:24:37','2023-03-17 05:24:37','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=home-1',0,'elementor_library','',0),(14,1,'2023-03-17 05:23:10','2023-03-17 05:23:10','','glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg','','inherit','open','closed','','glamour-fashion-girl-beauty-face-with-bright-makeu-pqe94jq_2-jpg','','','2023-03-17 05:23:10','2023-03-17 05:23:10','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/glamour-fashion-girl-beauty-face-with-bright-makeu-PQE94JQ_2.jpg',0,'attachment','image/jpeg',0),(15,1,'2023-03-17 05:23:13','2023-03-17 05:23:13','','runda_Монтажная-область-1_bg3.jpg','','inherit','open','closed','','runda_%d0%bc%d0%be%d0%bd%d1%82%d0%b0%d0%b6%d0%bd%d0%b0%d1%8f-%d0%be%d0%b1%d0%bb%d0%b0%d1%81%d1%82%d1%8c-1_bg3-jpg','','','2023-03-17 05:23:13','2023-03-17 05:23:13','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Монтажная-область-1_bg3.jpg',0,'attachment','image/jpeg',0),(16,1,'2023-03-17 05:23:14','2023-03-17 05:23:14','','run2.png','','inherit','open','closed','','run2-png','','','2023-03-17 05:23:14','2023-03-17 05:23:14','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/run2.png',0,'attachment','image/png',0),(17,1,'2023-03-17 05:23:17','2023-03-17 05:23:17','','run1.png','','inherit','open','closed','','run1-png','','','2023-03-17 05:23:17','2023-03-17 05:23:17','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/run1.png',0,'attachment','image/png',0),(18,1,'2023-03-17 05:23:20','2023-03-17 05:23:20','','da2.png','','inherit','open','closed','','da2-png','','','2023-03-17 05:23:20','2023-03-17 05:23:20','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/da2.png',0,'attachment','image/png',0),(19,1,'2023-03-17 05:23:22','2023-03-17 05:23:22','','da1.png','','inherit','open','closed','','da1-png','','','2023-03-17 05:23:22','2023-03-17 05:23:22','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/da1.png',0,'attachment','image/png',0),(20,1,'2023-03-17 05:23:24','2023-03-17 05:23:24','','Mesa-de-trabajo-1-copia-e1617856194424.jpg','','inherit','open','closed','','mesa-de-trabajo-1-copia-e1617856194424-jpg','','','2023-03-17 05:23:24','2023-03-17 05:23:24','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Mesa-de-trabajo-1-copia-e1617856194424.jpg',0,'attachment','image/jpeg',0),(21,1,'2023-03-17 05:23:25','2023-03-17 05:23:25','','Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg','','inherit','open','closed','','mesa-de-trabajo-1-copia-copy-e1617856220949-jpg','','','2023-03-17 05:23:25','2023-03-17 05:23:25','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Mesa-de-trabajo-1-copia-copy-e1617856220949.jpg',0,'attachment','image/jpeg',0),(22,1,'2023-03-17 05:23:26','2023-03-17 05:23:26','','gray_Artboard-6.jpg','','inherit','open','closed','','gray_artboard-6-jpg','','','2023-03-17 05:23:26','2023-03-17 05:23:26','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/gray_Artboard-6.jpg',0,'attachment','image/jpeg',0),(23,1,'2023-03-17 05:23:27','2023-03-17 05:23:27','','blue_Artboard-6.jpg','','inherit','open','closed','','blue_artboard-6-jpg','','','2023-03-17 05:23:27','2023-03-17 05:23:27','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/blue_Artboard-6.jpg',0,'attachment','image/jpeg',0),(24,1,'2023-03-17 05:23:27','2023-03-17 05:23:27','','gray_Artboard-5.jpg','','inherit','open','closed','','gray_artboard-5-jpg','','','2023-03-17 05:23:27','2023-03-17 05:23:27','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/gray_Artboard-5.jpg',0,'attachment','image/jpeg',0),(25,1,'2023-03-17 05:23:27','2023-03-17 05:23:27','','blue_Artboard-5.jpg','','inherit','open','closed','','blue_artboard-5-jpg','','','2023-03-17 05:23:27','2023-03-17 05:23:27','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/blue_Artboard-5.jpg',0,'attachment','image/jpeg',0),(26,1,'2023-03-17 05:23:28','2023-03-17 05:23:28','','gray_Artboard-4.jpg','','inherit','open','closed','','gray_artboard-4-jpg','','','2023-03-17 05:23:28','2023-03-17 05:23:28','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/gray_Artboard-4.jpg',0,'attachment','image/jpeg',0),(27,1,'2023-03-17 05:23:28','2023-03-17 05:23:28','','blue_Artboard-4.jpg','','inherit','open','closed','','blue_artboard-4-jpg','','','2023-03-17 05:23:28','2023-03-17 05:23:28','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/blue_Artboard-4.jpg',0,'attachment','image/jpeg',0),(28,1,'2023-03-17 05:23:29','2023-03-17 05:23:29','','gray_Artboard-3.jpg','','inherit','open','closed','','gray_artboard-3-jpg','','','2023-03-17 05:23:29','2023-03-17 05:23:29','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/gray_Artboard-3.jpg',0,'attachment','image/jpeg',0),(29,1,'2023-03-17 05:23:29','2023-03-17 05:23:29','','blue_Artboard-3.jpg','','inherit','open','closed','','blue_artboard-3-jpg','','','2023-03-17 05:23:29','2023-03-17 05:23:29','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/blue_Artboard-3.jpg',0,'attachment','image/jpeg',0),(30,1,'2023-03-17 05:23:30','2023-03-17 05:23:30','','gray_Artboard-2.jpg','','inherit','open','closed','','gray_artboard-2-jpg','','','2023-03-17 05:23:30','2023-03-17 05:23:30','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/gray_Artboard-2.jpg',0,'attachment','image/jpeg',0),(31,1,'2023-03-17 05:23:30','2023-03-17 05:23:30','','blue_Artboard-2.jpg','','inherit','open','closed','','blue_artboard-2-jpg','','','2023-03-17 05:23:30','2023-03-17 05:23:30','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/blue_Artboard-2.jpg',0,'attachment','image/jpeg',0),(32,1,'2023-03-17 05:23:30','2023-03-17 05:23:30','','gray_Artboard-1.jpg','','inherit','open','closed','','gray_artboard-1-jpg','','','2023-03-17 05:23:30','2023-03-17 05:23:30','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/gray_Artboard-1.jpg',0,'attachment','image/jpeg',0),(33,1,'2023-03-17 05:23:31','2023-03-17 05:23:31','','blue_Artboard-1.jpg','','inherit','open','closed','','blue_artboard-1-jpg','','','2023-03-17 05:23:31','2023-03-17 05:23:31','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/blue_Artboard-1.jpg',0,'attachment','image/jpeg',0),(34,1,'2023-03-17 05:23:31','2023-03-17 05:23:31','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2023-03-17 05:23:31','2023-03-17 05:23:31','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder.png',0,'attachment','image/png',0),(35,1,'2023-03-17 05:23:32','2023-03-17 05:23:32','','rundalogo_2.png','','inherit','open','closed','','rundalogo_2-png','','','2023-03-17 05:23:32','2023-03-17 05:23:32','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/rundalogo_2.png',0,'attachment','image/png',0),(36,1,'2023-03-17 05:23:34','2023-03-17 05:23:34','','rundalogo_4.png','','inherit','open','closed','','rundalogo_4-png','','','2023-03-17 05:23:34','2023-03-17 05:23:34','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/rundalogo_4.png',0,'attachment','image/png',0),(37,1,'2023-03-17 05:23:36','2023-03-17 05:23:36','','rundalogo_3.png','','inherit','open','closed','','rundalogo_3-png','','','2023-03-17 05:23:36','2023-03-17 05:23:36','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/rundalogo_3.png',0,'attachment','image/png',0),(38,1,'2023-03-17 05:23:38','2023-03-17 05:23:38','','dom-fou-QZfmPAOnt2Y-unsplash_2.jpg','','inherit','open','closed','','dom-fou-qzfmpaont2y-unsplash_2-jpg','','','2023-03-17 05:23:38','2023-03-17 05:23:38','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/dom-fou-QZfmPAOnt2Y-unsplash_2.jpg',0,'attachment','image/jpeg',0),(39,1,'2023-03-17 05:23:40','2023-03-17 05:23:40','','runda_Artboard-1_portrait-min.jpeg','','inherit','open','closed','','runda_artboard-1_portrait-min-jpeg','','','2023-03-17 05:23:40','2023-03-17 05:23:40','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg',0,'attachment','image/jpeg',0),(40,1,'2023-03-17 05:23:40','2023-03-17 05:23:40','','clientlogo_Artboard-5.png','','inherit','open','closed','','clientlogo_artboard-5-png','','','2023-03-17 05:23:40','2023-03-17 05:23:40','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png',0,'attachment','image/png',0),(41,1,'2023-03-17 05:23:41','2023-03-17 05:23:41','','placeholder.png','','inherit','open','closed','','placeholder-png-2','','','2023-03-17 05:23:41','2023-03-17 05:23:41','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-1.png',0,'attachment','image/png',0),(42,1,'2023-03-17 05:23:41','2023-03-17 05:23:41','','runda_Artboard-2_portrait-min.jpeg','','inherit','open','closed','','runda_artboard-2_portrait-min-jpeg','','','2023-03-17 05:23:41','2023-03-17 05:23:41','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg',0,'attachment','image/jpeg',0),(43,1,'2023-03-17 05:23:42','2023-03-17 05:23:42','','clientlogo_Artboard-4.png','','inherit','open','closed','','clientlogo_artboard-4-png','','','2023-03-17 05:23:42','2023-03-17 05:23:42','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png',0,'attachment','image/png',0),(44,1,'2023-03-17 05:23:43','2023-03-17 05:23:43','','runda_Artboard-5_portrait-min.jpeg','','inherit','open','closed','','runda_artboard-5_portrait-min-jpeg','','','2023-03-17 05:23:43','2023-03-17 05:23:43','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg',0,'attachment','image/jpeg',0),(45,1,'2023-03-17 05:23:43','2023-03-17 05:23:43','','clientlogo_Artboard-3.png','','inherit','open','closed','','clientlogo_artboard-3-png','','','2023-03-17 05:23:43','2023-03-17 05:23:43','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png',0,'attachment','image/png',0),(46,1,'2023-03-17 05:23:44','2023-03-17 05:23:44','','runda_Artboard-3_portrait-min.jpeg','','inherit','open','closed','','runda_artboard-3_portrait-min-jpeg','','','2023-03-17 05:23:44','2023-03-17 05:23:44','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg',0,'attachment','image/jpeg',0),(47,1,'2023-03-17 05:23:44','2023-03-17 05:23:44','','clientlogo_Artboard-2.png','','inherit','open','closed','','clientlogo_artboard-2-png','','','2023-03-17 05:23:44','2023-03-17 05:23:44','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png',0,'attachment','image/png',0),(48,1,'2023-03-17 05:23:45','2023-03-17 05:23:45','','runda_Artboard-4_portrait-min.jpeg','','inherit','open','closed','','runda_artboard-4_portrait-min-jpeg','','','2023-03-17 05:23:45','2023-03-17 05:23:45','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg',0,'attachment','image/jpeg',0),(49,1,'2023-03-17 05:23:45','2023-03-17 05:23:45','','clientlogo_Artboard-1.png','','inherit','open','closed','','clientlogo_artboard-1-png','','','2023-03-17 05:23:45','2023-03-17 05:23:45','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png',0,'attachment','image/png',0),(50,1,'2023-03-17 05:23:46','2023-03-17 05:23:46','','nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg','','inherit','open','closed','','nathan-duck-jo5fuekhb_4-unsplash2-e1617853628890-jpg','','','2023-03-17 05:23:46','2023-03-17 05:23:46','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg',0,'attachment','image/jpeg',0),(51,1,'2023-03-17 05:23:47','2023-03-17 05:23:47','','young-man-with-interesting-style-U5YJBRD_2.jpg','','inherit','open','closed','','young-man-with-interesting-style-u5yjbrd_2-jpg','','','2023-03-17 05:23:47','2023-03-17 05:23:47','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg',0,'attachment','image/jpeg',0),(52,1,'2023-03-17 05:23:48','2023-03-17 05:23:48','','portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg','','inherit','open','closed','','portrait-of-fashion-girl-in-a-black-sweater-with-a-ly8d6qr_2-jpg','','','2023-03-17 05:23:48','2023-03-17 05:23:48','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg',0,'attachment','image/jpeg',0),(53,1,'2023-03-17 05:23:49','2023-03-17 05:23:49','','modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg','','inherit','open','closed','','modern-youth-studio-shot-in-dark-studio-with-neon-pdjuv2w_2-jpg','','','2023-03-17 05:23:49','2023-03-17 05:23:49','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg',0,'attachment','image/jpeg',0),(54,1,'2023-03-17 05:23:50','2023-03-17 05:23:50','','man-with-purple-light-portrait-LQY3DEA.jpg','','inherit','open','closed','','man-with-purple-light-portrait-lqy3dea-jpg','','','2023-03-17 05:23:50','2023-03-17 05:23:50','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg',0,'attachment','image/jpeg',0),(55,1,'2023-03-17 05:23:52','2023-03-17 05:23:52','','alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg','','inherit','open','closed','','alone-in-the-room-studio-shot-in-dark-studio-with-twg33e2_2-jpg','','','2023-03-17 05:23:52','2023-03-17 05:23:52','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg',0,'attachment','image/jpeg',0),(56,1,'2023-03-17 05:23:53','2023-03-17 05:23:53','','beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg','','inherit','open','closed','','beautiful-man-in-formal-wear-and-in-glasses-is-in-eb32fpn-jpg','','','2023-03-17 05:23:53','2023-03-17 05:23:53','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg',0,'attachment','image/jpeg',0),(57,1,'2023-03-17 05:23:54','2023-03-17 05:23:54','','pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg','','inherit','open','closed','','pawel-czerwinski-ntyyl9eb9y8-unsplash-jpeg','','','2023-03-17 05:23:54','2023-03-17 05:23:54','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpeg',0,'attachment','image/jpeg',0),(58,1,'2023-03-17 05:23:55','2023-03-17 05:23:55','','Home 1','','inherit','closed','closed','','13-revision-v1','','','2023-03-17 05:23:55','2023-03-17 05:23:55','',13,'https://whatthehell-new.in8.cdn-alpha.com/?p=58',0,'revision','',0),(59,1,'2023-03-17 05:23:56','2023-03-17 05:23:56','<h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>WHAT CAN WE OFFER FOR YOU</h2>		\n			<h3>our best service</h3>		\n			<h3>DEVELOPMENT</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>ANALYSIS</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>UI/UX</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>STAY PRODUCTIVE AND CREATIVE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. </p>		\n			<a href=\"#\" role=\"button\">\n						READ MORE\n					</a>\n			<h2>OUR LATEST CASE STUDIES</h2>		\n			<h3>our works</h3>		\n			<a href=\"#\" role=\"button\">\n						view all\n					</a>\n                            <input type=\"radio\" name=\"ekit_ia_5ee87351\" id=\"ekit_ia_5ee87351_0\"  hidden>\n                <label for=\"ekit_ia_5ee87351_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg)\" >\n                            Photography\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_6cdb013e\" id=\"ekit_ia_6cdb013e_0\"  hidden>\n                <label for=\"ekit_ia_6cdb013e_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg)\" >\n                            3d Illustration\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_3443e0c6\" id=\"ekit_ia_3443e0c6_0\"  hidden>\n                <label for=\"ekit_ia_3443e0c6_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg)\" >\n                            Product Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_6ddde3e2\" id=\"ekit_ia_6ddde3e2_0\"  hidden>\n                <label for=\"ekit_ia_6ddde3e2_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg)\" >\n                            Packaging\n                </label>\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>Partners Worldwide</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>Awards</h2>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>','Home 2','','publish','closed','closed','','home-2','','','2023-03-17 05:24:39','2023-03-17 05:24:39','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=home-2',0,'elementor_library','',0),(60,1,'2023-03-17 05:23:56','2023-03-17 05:23:56','','abstract-multicolor-vibrant-background-4B9KSZJ_2.jpg','','inherit','open','closed','','abstract-multicolor-vibrant-background-4b9kszj_2-jpg','','','2023-03-17 05:23:56','2023-03-17 05:23:56','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/abstract-multicolor-vibrant-background-4B9KSZJ_2.jpg',0,'attachment','image/jpeg',0),(61,1,'2023-03-17 05:23:58','2023-03-17 05:23:58','','milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg','','inherit','open','closed','','milad-b-fakurian-0_8gaofrzbw-unsplash-jpg','','','2023-03-17 05:23:58','2023-03-17 05:23:58','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg',0,'attachment','image/jpeg',0),(62,1,'2023-03-17 05:23:59','2023-03-17 05:23:59','','mae-mu-GnWKTJlMYsQ-unsplash_2.jpg','','inherit','open','closed','','mae-mu-gnwktjlmysq-unsplash_2-jpg','','','2023-03-17 05:23:59','2023-03-17 05:23:59','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg',0,'attachment','image/jpeg',0),(63,1,'2023-03-17 05:24:00','2023-03-17 05:24:00','','matheus-ferrero-OsMwKgqSGWU-unsplash.jpg','','inherit','open','closed','','matheus-ferrero-osmwkgqsgwu-unsplash-jpg','','','2023-03-17 05:24:00','2023-03-17 05:24:00','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg',0,'attachment','image/jpeg',0),(64,1,'2023-03-17 05:24:00','2023-03-17 05:24:00','','ian-dooley-y_CSTKJ0bEs-unsplash.jpg','','inherit','open','closed','','ian-dooley-y_cstkj0bes-unsplash-jpg','','','2023-03-17 05:24:00','2023-03-17 05:24:00','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg',0,'attachment','image/jpeg',0),(65,1,'2023-03-17 05:24:01','2023-03-17 05:24:01','','beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg','','inherit','open','closed','','beautiful-young-woman-in-white-shirt-with-jeans-us-fdsfj87_2-min-jpeg','','','2023-03-17 05:24:01','2023-03-17 05:24:01','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-young-woman-in-white-shirt-with-jeans-us-FDSFJ87_2-min.jpeg',0,'attachment','image/jpeg',0),(66,1,'2023-03-17 05:24:03','2023-03-17 05:24:03','','matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg','','inherit','open','closed','','matheus-ferrero-osmwkgqsgwu-unsplash_3-jpg','','','2023-03-17 05:24:03','2023-03-17 05:24:03','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg',0,'attachment','image/jpeg',0),(67,1,'2023-03-17 05:24:04','2023-03-17 05:24:04','','jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg','','inherit','open','closed','','jakob-owens-iydtwgkz-0q-unsplash_3-jpg','','','2023-03-17 05:24:04','2023-03-17 05:24:04','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg',0,'attachment','image/jpeg',0),(68,1,'2023-03-17 05:24:05','2023-03-17 05:24:05','','beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg','','inherit','open','closed','','beautiful-young-asian-woman-with-long-dark-hair-hcg5xch_2-jpg','','','2023-03-17 05:24:05','2023-03-17 05:24:05','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-young-asian-woman-with-long-dark-hair-HCG5XCH_2.jpg',0,'attachment','image/jpeg',0),(69,1,'2023-03-17 05:24:07','2023-03-17 05:24:07','','Home 2','','inherit','closed','closed','','59-revision-v1','','','2023-03-17 05:24:07','2023-03-17 05:24:07','',59,'https://whatthehell-new.in8.cdn-alpha.com/?p=69',0,'revision','',0),(70,1,'2023-03-17 05:24:07','2023-03-17 05:24:07','<h1>ABOUT US</h1>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-768x769.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>WELCOME TO OUR AGENCY</h2>		\n			<h3>the best agency</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Digital project planning\n									</li>\n								<li>\n										In-House digital consulting\n									</li>\n								<li>\n										Permanent and contract recruitement\n									</li>\n								<li>\n										Developers and technical architects\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n				0\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n			<h2>Partners Worldwide</h2>		\n				0\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Awards</h2>		\n			<h2>WE BRING THE BEST THINGS FOR YOU</h2>		\n			<h3>our services</h3>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Product Design</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Development</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Brain Storming</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Marketing</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>WHAT THEY SAY ABOUT US</h2>		\n			<h3>client testimonials</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>','About Us','','publish','closed','closed','','about-us','','','2023-03-17 05:24:40','2023-03-17 05:24:40','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=about-us',0,'elementor_library','',0),(71,1,'2023-03-17 05:24:08','2023-03-17 05:24:08','','young-man-with-interesting-style-U5YJBRD_3.jpg','','inherit','open','closed','','young-man-with-interesting-style-u5yjbrd_3-jpg','','','2023-03-17 05:24:08','2023-03-17 05:24:08','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3.jpg',0,'attachment','image/jpeg',0),(72,1,'2023-03-17 05:24:08','2023-03-17 05:24:08','','woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg','','inherit','open','closed','','woman-working-on-laptop-and-lying-on-sofa-34pdydr_2-jpg','','','2023-03-17 05:24:08','2023-03-17 05:24:08','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg',0,'attachment','image/jpeg',0),(73,1,'2023-03-17 05:24:09','2023-03-17 05:24:09','','About Us','','inherit','closed','closed','','70-revision-v1','','','2023-03-17 05:24:09','2023-03-17 05:24:09','',70,'https://whatthehell-new.in8.cdn-alpha.com/?p=73',0,'revision','',0),(74,1,'2023-03-17 05:24:09','2023-03-17 05:24:09','<h1>OUR SERVICES</h1>		\n			<h2>WHAT CAN WE OFFER FOR YOU</h2>		\n			<h3>our best service</h3>		\n			<h3>DEVELOPMENT</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>ANALYSIS</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>UI/UX</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n<a href=\"?playlist=&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. </p>		\n					<ul>\n							<li>\n										Creative Project 2021\n									</li>\n								<li>\n										Digital project planning and resourcing\n									</li>\n								<li>\n										Marketing Campaign\n									</li>\n								<li>\n										Product Consultant 2021\n									</li>\n								<li>\n										Head of Design and Marketing Department\n									</li>\n						</ul>\n			<h2>CHOOSE YOUR PLANS</h2>		\n			<h3>pricing plans</h3>		\n			<h2>BASIC</h2>		\n		<p>$119</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<h2>STANDARD</h2>		\n		<p>$129</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<h2>EXPERT</h2>		\n		<p>$139</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<h2>LET\'S WORK TOGETHER </h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>UNIQUE DIGITAL EXPERIENCES</h2>		\n			<h3>our special skills</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n                            UI/UX\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            BRANDING\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            ILLUSTRATION\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            3D PROJECT\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Service 1','','publish','closed','closed','','service-1','','','2023-03-17 05:24:41','2023-03-17 05:24:41','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=service-1',0,'elementor_library','',0),(75,1,'2023-03-17 05:24:09','2023-03-17 05:24:09','','developers-working-in-masks-F97S4DR_2.jpg','','inherit','open','closed','','developers-working-in-masks-f97s4dr_2-jpg','','','2023-03-17 05:24:09','2023-03-17 05:24:09','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/developers-working-in-masks-F97S4DR_2.jpg',0,'attachment','image/jpeg',0),(76,1,'2023-03-17 05:24:11','2023-03-17 05:24:11','','placeholder.png','','inherit','open','closed','','placeholder-png-3','','','2023-03-17 05:24:11','2023-03-17 05:24:11','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-2.png',0,'attachment','image/png',0),(77,1,'2023-03-17 05:24:12','2023-03-17 05:24:12','','trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png','','inherit','open','closed','','trendy-girl-with-long-hair-and-stylish-makeup-in-a-ckv4v9a-copy-1-png','','','2023-03-17 05:24:12','2023-03-17 05:24:12','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png',0,'attachment','image/png',0),(78,1,'2023-03-17 05:24:13','2023-03-17 05:24:13','','Service 1','','inherit','closed','closed','','74-revision-v1','','','2023-03-17 05:24:13','2023-03-17 05:24:13','',74,'https://whatthehell-new.in8.cdn-alpha.com/?p=78',0,'revision','',0),(79,1,'2023-03-17 05:24:13','2023-03-17 05:24:13','<h1>OUR SERVICES</h1>		\n			<h2>ANOTHER WAY OF CREATIVE THINKING</h2>		\n			<h3>our best service</h3>		\n			<h3>ANALYSIS</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>DEVELOPMENT</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>UI/UX</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>STORY OF A BRAND</h2>		\n			<h3>our vision</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum.</p>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>OUR LATEST CASE STUDIES</h2>		\n			<h3>our works</h3>		\n			<a href=\"#\" role=\"button\">\n						view all\n					</a>\n                            <input type=\"radio\" name=\"ekit_ia_73af62ee\" id=\"ekit_ia_73af62ee_0\"  hidden>\n                <label for=\"ekit_ia_73af62ee_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg)\" >\n                            Photography\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_30b51f52\" id=\"ekit_ia_30b51f52_0\"  hidden>\n                <label for=\"ekit_ia_30b51f52_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg)\" >\n                            3d Illustration\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_43e2cbc5\" id=\"ekit_ia_43e2cbc5_0\"  hidden>\n                <label for=\"ekit_ia_43e2cbc5_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg)\" >\n                            Product Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_6c919051\" id=\"ekit_ia_6c919051_0\"  hidden>\n                <label for=\"ekit_ia_6c919051_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg)\" >\n                            Packaging\n                </label>\n			<h2>LET\'S WORK TOGETHER </h2>','Service 2','','publish','closed','closed','','service-2','','','2023-03-17 05:24:41','2023-03-17 05:24:41','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=service-2',0,'elementor_library','',0),(80,1,'2023-03-17 05:24:14','2023-03-17 05:24:14','','couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2.jpg','','inherit','open','closed','','couple-of-hipsters-under-red-and-blue-lights-8uq89fk_2-jpg','','','2023-03-17 05:24:14','2023-03-17 05:24:14','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/couple-of-hipsters-under-red-and-blue-lights-8UQ89FK_2.jpg',0,'attachment','image/jpeg',0),(81,1,'2023-03-17 05:24:15','2023-03-17 05:24:15','','Service 2','','inherit','closed','closed','','79-revision-v1','','','2023-03-17 05:24:15','2023-03-17 05:24:15','',79,'https://whatthehell-new.in8.cdn-alpha.com/?p=81',0,'revision','',0),(82,1,'2023-03-17 05:24:15','2023-03-17 05:24:15','<h1>PORTFOLIO</h1>		\n			<h2>OUR PORTFOLIO</h2>		\n			<h3>our works</h3>','Portfolio 2','','publish','closed','closed','','portfolio-2','','','2023-03-17 05:24:41','2023-03-17 05:24:41','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=portfolio-2',0,'elementor_library','',0),(83,1,'2023-03-17 05:24:15','2023-03-17 05:24:15','','portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2.jpg','','inherit','open','closed','','portrait-of-young-woman-with-long-black-hair-and-r-snc8pt4_2-jpg','','','2023-03-17 05:24:15','2023-03-17 05:24:15','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-young-woman-with-long-black-hair-and-r-SNC8PT4_2.jpg',0,'attachment','image/jpeg',0),(84,1,'2023-03-17 05:24:17','2023-03-17 05:24:17','','Portfolio 2','','inherit','closed','closed','','82-revision-v1','','','2023-03-17 05:24:17','2023-03-17 05:24:17','',82,'https://whatthehell-new.in8.cdn-alpha.com/?p=84',0,'revision','',0),(85,1,'2023-03-17 05:24:17','2023-03-17 05:24:17','<h1>PORTFOLIO</h1>		\n			<h2>OUR PORTFOLIO</h2>		\n			<h3>our works</h3>','Portfolio 1','','publish','closed','closed','','portfolio-1','','','2023-03-17 05:24:41','2023-03-17 05:24:41','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=portfolio-1',0,'elementor_library','',0),(86,1,'2023-03-17 05:24:17','2023-03-17 05:24:17','','Portfolio 1','','inherit','closed','closed','','85-revision-v1','','','2023-03-17 05:24:17','2023-03-17 05:24:17','',85,'https://whatthehell-new.in8.cdn-alpha.com/?p=86',0,'revision','',0),(87,1,'2023-03-17 05:24:17','2023-03-17 05:24:17','<h1>OUR TEAM</h1>		\n			<h2>IDEAS & CONCEPT</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>USER SATISFICATION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>FINAL PRODUCT</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2cc74097\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_7a6ddb9\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_202593c7\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_34c82fb4\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_7428576f\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_42d427a4\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n                            <input type=\"radio\" name=\"ekit_ia_3e82ae33\" id=\"ekit_ia_3e82ae33_0\"  hidden>\n                <label for=\"ekit_ia_3e82ae33_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg)\" >\n                            Packaging\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_3e82ae33\" id=\"ekit_ia_3e82ae33_1\"  hidden>\n                <label for=\"ekit_ia_3e82ae33_1\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg)\" >\n                            Branding\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_3e82ae33\" id=\"ekit_ia_3e82ae33_2\"  hidden>\n                <label for=\"ekit_ia_3e82ae33_2\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg)\" >\n                            Photography\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_3e82ae33\" id=\"ekit_ia_3e82ae33_3\"  hidden>\n                <label for=\"ekit_ia_3e82ae33_3\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg)\" >\n                            Mockup\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_3e82ae33\" id=\"ekit_ia_3e82ae33_4\"  hidden>\n                <label for=\"ekit_ia_3e82ae33_4\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg)\" >\n                            3D Illustration\n                </label>\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>','Our Team','','publish','closed','closed','','our-team','','','2023-03-17 05:24:41','2023-03-17 05:24:41','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=our-team',0,'elementor_library','',0),(88,1,'2023-03-17 05:24:17','2023-03-17 05:24:17','','multiethnic-startup-business-team-on-meeting-PNMFSET_2.jpg','','inherit','open','closed','','multiethnic-startup-business-team-on-meeting-pnmfset_2-jpg','','','2023-03-17 05:24:17','2023-03-17 05:24:17','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/multiethnic-startup-business-team-on-meeting-PNMFSET_2.jpg',0,'attachment','image/jpeg',0),(89,1,'2023-03-17 05:24:18','2023-03-17 05:24:18','','Our Team','','inherit','closed','closed','','87-revision-v1','','','2023-03-17 05:24:18','2023-03-17 05:24:18','',87,'https://whatthehell-new.in8.cdn-alpha.com/?p=89',0,'revision','',0),(90,1,'2023-03-17 05:24:18','2023-03-17 05:24:18','<h1>TEAM MEMBER</h1>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>LEONY HEART</h2>		\n			<h3>Graphic Designer</h3>		\n		<p><strong>Experience</strong> : 7 Years</p><p><strong>Email</strong> : leonyheart@mail.com</p><p><strong>Phone</strong> :+1 234 567 890</p><p><strong>Fax</strong> : 1 234 567 890</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>PERSONAL BIOGRAPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. Ut laoreet semper ligula, eget pretium purus congue a. Vivamus vehicula tincidunt magna, ac posuere nulla molestie placerat. Vivamus neque orci, scelerisque quis metus vel, bibendum volutpat leo. Donec eu mollis est.</p><p>Sed sit amet dolor et enim elementum pellentesque. Praesent pulvinar odio ligula, nec ultricies nunc vehicula a. Duis sodales purus velit, nec tincidunt tortor maximus sed. Suspendisse imperdiet gravida ex sit amet ullamcorper.</p>		\n			<h2>SKILL SET</h2>		\n                            UI/UX\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            BRANDING\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            ILLUSTRATION\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h2>ACTIVITIES</h2>		\n					<ul>\n							<li>\n										Creative Project 2021\n									</li>\n								<li>\n										Digital project planning and resourcing\n									</li>\n								<li>\n										Marketing Campaign\n									</li>\n								<li>\n										Product Consultant 2021\n									</li>\n								<li>\n										Head of Design and Marketing Department\n									</li>\n						</ul>\n			<h2>PERSONAL EXPERIENCE</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. Ut laoreet semper ligula, eget pretium purus congue a. Vivamus vehicula tincidunt magna, ac posuere nulla molestie placerat. Vivamus neque orci, scelerisque quis metus vel, bibendum volutpat leo. Donec eu mollis est.</p><p>Sed sit amet dolor et enim elementum pellentesque. Praesent pulvinar odio ligula, nec ultricies nunc vehicula a. Duis sodales purus velit, nec tincidunt tortor maximus sed. Suspendisse imperdiet gravida ex sit amet ullamcorper.</p>		\n			<h2>LEAVE A REPLY</h2>		\n			[wpforms id=\"497\"]','Single Member','','publish','closed','closed','','single-member','','','2023-03-17 05:24:42','2023-03-17 05:24:42','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=single-member',0,'elementor_library','',0),(91,1,'2023-03-17 05:24:19','2023-03-17 05:24:19','','portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2.jpg','','inherit','open','closed','','portrait-of-fashion-girl-in-a-black-sweater-with-a-znfk6lg_2-jpg','','','2023-03-17 05:24:19','2023-03-17 05:24:19','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-ZNFK6LG_2.jpg',0,'attachment','image/jpeg',0),(92,1,'2023-03-17 05:24:21','2023-03-17 05:24:21','','bg_Mesa-de-trabajo-1-copia_3.jpg','','inherit','open','closed','','bg_mesa-de-trabajo-1-copia_3-jpg','','','2023-03-17 05:24:21','2023-03-17 05:24:21','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/bg_Mesa-de-trabajo-1-copia_3.jpg',0,'attachment','image/jpeg',0),(93,1,'2023-03-17 05:24:21','2023-03-17 05:24:21','','Single Member','','inherit','closed','closed','','90-revision-v1','','','2023-03-17 05:24:21','2023-03-17 05:24:21','',90,'https://whatthehell-new.in8.cdn-alpha.com/?p=93',0,'revision','',0),(94,1,'2023-03-17 05:24:21','2023-03-17 05:24:21','<h1>FAQS</h1>		\n			<h2>WE ARE HERE TO HELP YOU</h2>		\n			<h3>quick support</h3>		\n			<h3>ANALYSIS</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>DEVELOPMENT</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>UI/UX</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n<a href=\"?playlist=&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h2>FREQUENTLY ASKED QUESTIONS</h2>		\n			<h3>do you know?</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','FAQs Page','','publish','closed','closed','','faqs-page','','','2023-03-17 05:24:42','2023-03-17 05:24:42','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=faqs-page',0,'elementor_library','',0),(95,1,'2023-03-17 05:24:22','2023-03-17 05:24:22','','shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2.jpg','','inherit','open','closed','','shows-gesture-with-forefinger-futuristic-neon-ligh-a9lcyuu_2-jpg','','','2023-03-17 05:24:22','2023-03-17 05:24:22','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/shows-gesture-with-forefinger-futuristic-neon-ligh-A9LCYUU_2.jpg',0,'attachment','image/jpeg',0),(96,1,'2023-03-17 05:24:23','2023-03-17 05:24:23','','FAQs Page','','inherit','closed','closed','','94-revision-v1','','','2023-03-17 05:24:23','2023-03-17 05:24:23','',94,'https://whatthehell-new.in8.cdn-alpha.com/?p=96',0,'revision','',0),(97,1,'2023-03-17 05:24:23','2023-03-17 05:24:23','<h1>CONTACT US</h1>		\n			<h2>OUR CONTACT</h2>		\n			<h3>get in touch</h3>		\n			<h2>MURRAY</h2>		\n			<a href=\"#\" role=\"button\">\n						2930 Philadelphia Avenue\n					</a>\n			<a href=\"#\" role=\"button\">\n						801-265-6514\n					</a>\n			<a href=\"#\" role=\"button\">\n						anymail@jmail.com\n					</a>\n			<h2>ALABASTA</h2>		\n			<a href=\"#\" role=\"button\">\n						2930 Philadelphia Avenue\n					</a>\n			<a href=\"#\" role=\"button\">\n						801-265-6514\n					</a>\n			<a href=\"#\" role=\"button\">\n						anymail@jmail.com\n					</a>\n			<h2>CONTACT US</h2>		\n			[wpforms id=\"497\"]		\n			<h2>HAVE ANY QUESTION? JUST SAY HI!</h2>		\n			<a href=\"#\" role=\"button\">\n						GET IN TOUCH\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>','Contact Us','','publish','closed','closed','','contact-us','','','2023-03-17 05:24:42','2023-03-17 05:24:42','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=contact-us',0,'elementor_library','',0),(98,1,'2023-03-17 05:24:23','2023-03-17 05:24:23','','portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2.jpg','','inherit','open','closed','','portrait-of-joyful-african-american-man-in-colorfu-hsacg5z_2-jpg','','','2023-03-17 05:24:23','2023-03-17 05:24:23','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-joyful-african-american-man-in-colorfu-HSACG5Z_2.jpg',0,'attachment','image/jpeg',0),(99,1,'2023-03-17 05:24:25','2023-03-17 05:24:25','','trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A_3.jpg','','inherit','open','closed','','trendy-girl-with-long-hair-and-stylish-makeup-in-a-ckv4v9a_3-jpg','','','2023-03-17 05:24:25','2023-03-17 05:24:25','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A_3.jpg',0,'attachment','image/jpeg',0),(100,1,'2023-03-17 05:24:26','2023-03-17 05:24:26','','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2023-03-17 05:24:26','2023-03-17 05:24:26','',97,'https://whatthehell-new.in8.cdn-alpha.com/?p=100',0,'revision','',0),(101,1,'2023-03-17 05:24:26','2023-03-17 05:24:26','<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>COMING SOON</h2>','Coming Soon','','publish','closed','closed','','coming-soon','','','2023-03-17 05:24:42','2023-03-17 05:24:42','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=coming-soon',0,'elementor_library','',0),(102,1,'2023-03-17 05:24:26','2023-03-17 05:24:26','','Asset-2_logo.png','','inherit','open','closed','','asset-2_logo-png','','','2023-03-17 05:24:26','2023-03-17 05:24:26','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo.png',0,'attachment','image/png',0),(103,1,'2023-03-17 05:24:27','2023-03-17 05:24:27','','dom-fou-QZfmPAOnt2Y-unsplash_3.jpg','','inherit','open','closed','','dom-fou-qzfmpaont2y-unsplash_3-jpg','','','2023-03-17 05:24:27','2023-03-17 05:24:27','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/dom-fou-QZfmPAOnt2Y-unsplash_3.jpg',0,'attachment','image/jpeg',0),(104,1,'2023-03-17 05:24:28','2023-03-17 05:24:28','','Coming Soon','','inherit','closed','closed','','101-revision-v1','','','2023-03-17 05:24:28','2023-03-17 05:24:28','',101,'https://whatthehell-new.in8.cdn-alpha.com/?p=104',0,'revision','',0),(105,1,'2023-03-17 05:24:28','2023-03-17 05:24:28','<h2>4 0 4 </h2>		\n			<h2>SORRY THE PAGE NOT FOUND</h2>		\n		<p>The page you are looking for maybe was moved, removed, renamed or never existed.</p>		\n					<form role=\"search\" action=\"https://whatthehell-new.in8.cdn-alpha.com\" method=\"get\">\n									<input placeholder=\"   Search...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					<button id=\"clear-with-button\" type=\"reset\">\n					</button>\n					<button type=\"submit\">\n					</button>\n				</form>','404 Page','','publish','closed','closed','','404-page','','','2023-03-17 05:24:42','2023-03-17 05:24:42','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=404-page',0,'elementor_library','',0),(106,1,'2023-03-17 05:24:29','2023-03-17 05:24:29','','male-hacker-stealing-data-HCLSABP_2.jpg','','inherit','open','closed','','male-hacker-stealing-data-hclsabp_2-jpg','','','2023-03-17 05:24:29','2023-03-17 05:24:29','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/male-hacker-stealing-data-HCLSABP_2.jpg',0,'attachment','image/jpeg',0),(107,1,'2023-03-17 05:24:30','2023-03-17 05:24:30','','404 Page','','inherit','closed','closed','','105-revision-v1','','','2023-03-17 05:24:30','2023-03-17 05:24:30','',105,'https://whatthehell-new.in8.cdn-alpha.com/?p=107',0,'revision','',0),(108,1,'2023-03-17 05:24:30','2023-03-17 05:24:30','<h1>BLOG</h1>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>LINDA STRIS</h2>		\n		<p>Life is like a boat</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					<form role=\"search\" action=\"https://whatthehell-new.in8.cdn-alpha.com\" method=\"get\">\n									<input placeholder=\"   Search...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					<button id=\"clear-with-button\" type=\"reset\">\n					</button>\n					<button type=\"submit\">\n					</button>\n				</form>\n			<h2>CATEGORIES</h2>		\n			<h2>GALLERY</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>NEED A DESIGN?</h2>		\n		<p>let\'s get to work</p>		\n			<a href=\"#\" role=\"button\">\n					</a>','Blog','','publish','closed','closed','','blog','','','2023-03-17 05:24:43','2023-03-17 05:24:43','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=blog',0,'elementor_library','',0),(109,1,'2023-03-17 05:24:31','2023-03-17 05:24:31','','typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2.jpg','','inherit','open','closed','','typing-on-laptop-computer-keyboard-with-pink-light-asvwf6n_2-jpg','','','2023-03-17 05:24:31','2023-03-17 05:24:31','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/typing-on-laptop-computer-keyboard-with-pink-light-ASVWF6N_2.jpg',0,'attachment','image/jpeg',0),(110,1,'2023-03-17 05:24:33','2023-03-17 05:24:33','','walling-52H5Nfi5WiE-unsplash_2.jpg','','inherit','open','closed','','walling-52h5nfi5wie-unsplash_2-jpg','','','2023-03-17 05:24:33','2023-03-17 05:24:33','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2.jpg',0,'attachment','image/jpeg',0),(111,1,'2023-03-17 05:24:33','2023-03-17 05:24:33','','Blog','','inherit','closed','closed','','108-revision-v1','','','2023-03-17 05:24:33','2023-03-17 05:24:33','',108,'https://whatthehell-new.in8.cdn-alpha.com/?p=111',0,'revision','',0),(112,1,'2023-03-17 05:24:33','2023-03-17 05:24:33','<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>||</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum. Vestibulum tincidunt porta nulla. Nulla egestas ligula at molestie pulvinar. Cras nec porta lorem, et eleifend risus. Aenean pretium sit amet metus eget volutpat. Sed in diam quis nunc sollicitudin euismod nec in felis.</p><p>Nullam consequat, arcu vitae posuere tincidunt, diam tortor bibendum sapien, in convallis velit est nec odio. In congue faucibus dui eget commodo. Integer et ante nibh. Pellentesque in placerat magna, sed imperdiet quam. Pellentesque nulla massa, convallis sed lectus at, dignissim porttitor mauris. Integer in sapien porta arcu viverra mollis id sit amet tortor. Etiam mattis augue quis mauris pellentesque, quis sollicitudin mauris rhoncus. Duis tincidunt mauris quis euismod consequat. Praesent erat arcu, cursus quis ornare eu, euismod vel nisl. Morbi maximus at lectus vitae tincidunt. Nulla quis scelerisque neque. Donec luctus, ipsum porta luctus porta, neque est vulputate ante, a bibendum est augue vitae erat. Proin ut efficitur tellus. Nulla interdum ornare tempus.</p>		\n			<h2>\"Many of life’s failures are people who did not realize how close they were to success when they gave up.\" – Thomas A. Edison</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum. Vestibulum tincidunt porta nulla. Nulla egestas ligula at molestie pulvinar. Cras nec porta lorem, et eleifend risus. Aenean pretium sit amet metus eget volutpat. Sed in diam quis nunc sollicitudin euismod nec in felis.</p>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. </p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Reddit\n											</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Life is like a boat</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					<form role=\"search\" action=\"https://whatthehell-new.in8.cdn-alpha.com\" method=\"get\">\n									<input placeholder=\"   Search...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					<button id=\"clear-with-button\" type=\"reset\">\n					</button>\n					<button type=\"submit\">\n					</button>\n				</form>\n			<h2>CATEGORIES</h2>		\n			<h2>GALLERY</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>NEED A DESIGN?</h2>		\n		<p>let\'s get to work</p>		\n			<a href=\"#\" role=\"button\">\n					</a>','Single Post','','publish','closed','closed','','single-post','','','2023-03-17 05:24:43','2023-03-17 05:24:43','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=single-post',0,'elementor_library','',0),(113,1,'2023-03-17 05:24:33','2023-03-17 05:24:33','','Single Post','','inherit','closed','closed','','112-revision-v1','','','2023-03-17 05:24:33','2023-03-17 05:24:33','',112,'https://whatthehell-new.in8.cdn-alpha.com/?p=113',0,'revision','',0),(114,1,'2023-03-17 05:24:33','2023-03-17 05:24:33','<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','publish','closed','closed','','header','','','2023-03-17 05:24:43','2023-03-17 05:24:43','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=header',0,'elementor_library','',0),(115,1,'2023-03-17 05:24:33','2023-03-17 05:24:33','','Header','','inherit','closed','closed','','114-revision-v1','','','2023-03-17 05:24:33','2023-03-17 05:24:33','',114,'https://whatthehell-new.in8.cdn-alpha.com/?p=115',0,'revision','',0),(116,1,'2023-03-17 05:24:33','2023-03-17 05:24:33','<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>ADDRESS</h2>		\n		<p>2750 Goodwin Avenue, Washington, USA</p>		\n			<h2>EMAIL</h2>		\n		<p>runda@anymail.com</p>		\n			<h2>PHONE</h2>		\n		<p>509-364-0482</p>		\n			<h2>USEFUL LINKS</h2>		\n			<h2>OUR LOCATION</h2>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','publish','closed','closed','','footer','','','2023-03-17 05:24:43','2023-03-17 05:24:43','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=footer',0,'elementor_library','',0),(117,1,'2023-03-17 05:24:33','2023-03-17 05:24:33','','Footer','','inherit','closed','closed','','116-revision-v1','','','2023-03-17 05:24:33','2023-03-17 05:24:33','',116,'https://whatthehell-new.in8.cdn-alpha.com/?p=117',0,'revision','',0),(118,1,'2023-03-17 05:24:37','2023-03-17 05:24:37','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_7750131a\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_27495080\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5eefad99\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_7dded81a\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_6d494489\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2187c184\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home 1','','inherit','closed','closed','','13-revision-v1','','','2023-03-17 05:24:37','2023-03-17 05:24:37','',13,'https://whatthehell-new.in8.cdn-alpha.com/?p=118',0,'revision','',0),(119,1,'2023-03-17 05:24:39','2023-03-17 05:24:39','<h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>WHAT CAN WE OFFER FOR YOU</h2>		\n			<h3>our best service</h3>		\n			<h3>DEVELOPMENT</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>ANALYSIS</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>UI/UX</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>STAY PRODUCTIVE AND CREATIVE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. </p>		\n			<a href=\"#\" role=\"button\">\n						READ MORE\n					</a>\n			<h2>OUR LATEST CASE STUDIES</h2>		\n			<h3>our works</h3>		\n			<a href=\"#\" role=\"button\">\n						view all\n					</a>\n                            <input type=\"radio\" name=\"ekit_ia_5ee87351\" id=\"ekit_ia_5ee87351_0\"  hidden>\n                <label for=\"ekit_ia_5ee87351_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg)\" >\n                            Photography\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_6cdb013e\" id=\"ekit_ia_6cdb013e_0\"  hidden>\n                <label for=\"ekit_ia_6cdb013e_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg)\" >\n                            3d Illustration\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_3443e0c6\" id=\"ekit_ia_3443e0c6_0\"  hidden>\n                <label for=\"ekit_ia_3443e0c6_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg)\" >\n                            Product Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_6ddde3e2\" id=\"ekit_ia_6ddde3e2_0\"  hidden>\n                <label for=\"ekit_ia_6ddde3e2_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg)\" >\n                            Packaging\n                </label>\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>Partners Worldwide</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>Awards</h2>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>','Home 2','','inherit','closed','closed','','59-revision-v1','','','2023-03-17 05:24:39','2023-03-17 05:24:39','',59,'https://whatthehell-new.in8.cdn-alpha.com/?p=119',0,'revision','',0),(120,1,'2023-03-17 05:24:40','2023-03-17 05:24:40','<h1>ABOUT US</h1>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-768x769.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>WELCOME TO OUR AGENCY</h2>		\n			<h3>the best agency</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Digital project planning\n									</li>\n								<li>\n										In-House digital consulting\n									</li>\n								<li>\n										Permanent and contract recruitement\n									</li>\n								<li>\n										Developers and technical architects\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n				0\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n			<h2>Partners Worldwide</h2>		\n				0\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Awards</h2>		\n			<h2>WE BRING THE BEST THINGS FOR YOU</h2>		\n			<h3>our services</h3>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Product Design</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Development</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Brain Storming</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Marketing</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>WHAT THEY SAY ABOUT US</h2>		\n			<h3>client testimonials</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>','About Us','','inherit','closed','closed','','70-revision-v1','','','2023-03-17 05:24:40','2023-03-17 05:24:40','',70,'https://whatthehell-new.in8.cdn-alpha.com/?p=120',0,'revision','',0),(121,1,'2023-03-17 05:24:41','2023-03-17 05:24:41','<h1>OUR SERVICES</h1>		\n			<h2>WHAT CAN WE OFFER FOR YOU</h2>		\n			<h3>our best service</h3>		\n			<h3>DEVELOPMENT</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>ANALYSIS</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>UI/UX</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n<a href=\"?playlist=&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. </p>		\n					<ul>\n							<li>\n										Creative Project 2021\n									</li>\n								<li>\n										Digital project planning and resourcing\n									</li>\n								<li>\n										Marketing Campaign\n									</li>\n								<li>\n										Product Consultant 2021\n									</li>\n								<li>\n										Head of Design and Marketing Department\n									</li>\n						</ul>\n			<h2>CHOOSE YOUR PLANS</h2>		\n			<h3>pricing plans</h3>		\n			<h2>BASIC</h2>		\n		<p>$119</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<h2>STANDARD</h2>		\n		<p>$129</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<h2>EXPERT</h2>		\n		<p>$139</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<h2>LET\'S WORK TOGETHER </h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>UNIQUE DIGITAL EXPERIENCES</h2>		\n			<h3>our special skills</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n                            UI/UX\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            BRANDING\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            ILLUSTRATION\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            3D PROJECT\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Service 1','','inherit','closed','closed','','74-revision-v1','','','2023-03-17 05:24:41','2023-03-17 05:24:41','',74,'https://whatthehell-new.in8.cdn-alpha.com/?p=121',0,'revision','',0),(122,1,'2023-03-17 05:24:41','2023-03-17 05:24:41','<h1>OUR SERVICES</h1>		\n			<h2>ANOTHER WAY OF CREATIVE THINKING</h2>		\n			<h3>our best service</h3>		\n			<h3>ANALYSIS</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>DEVELOPMENT</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>UI/UX</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>STORY OF A BRAND</h2>		\n			<h3>our vision</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum.</p>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>OUR LATEST CASE STUDIES</h2>		\n			<h3>our works</h3>		\n			<a href=\"#\" role=\"button\">\n						view all\n					</a>\n                            <input type=\"radio\" name=\"ekit_ia_73af62ee\" id=\"ekit_ia_73af62ee_0\"  hidden>\n                <label for=\"ekit_ia_73af62ee_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg)\" >\n                            Photography\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_30b51f52\" id=\"ekit_ia_30b51f52_0\"  hidden>\n                <label for=\"ekit_ia_30b51f52_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg)\" >\n                            3d Illustration\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_43e2cbc5\" id=\"ekit_ia_43e2cbc5_0\"  hidden>\n                <label for=\"ekit_ia_43e2cbc5_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg)\" >\n                            Product Design\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_6c919051\" id=\"ekit_ia_6c919051_0\"  hidden>\n                <label for=\"ekit_ia_6c919051_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg)\" >\n                            Packaging\n                </label>\n			<h2>LET\'S WORK TOGETHER </h2>','Service 2','','inherit','closed','closed','','79-revision-v1','','','2023-03-17 05:24:41','2023-03-17 05:24:41','',79,'https://whatthehell-new.in8.cdn-alpha.com/?p=122',0,'revision','',0),(123,1,'2023-03-17 05:24:41','2023-03-17 05:24:41','<h1>PORTFOLIO</h1>		\n			<h2>OUR PORTFOLIO</h2>		\n			<h3>our works</h3>','Portfolio 2','','inherit','closed','closed','','82-revision-v1','','','2023-03-17 05:24:41','2023-03-17 05:24:41','',82,'https://whatthehell-new.in8.cdn-alpha.com/?p=123',0,'revision','',0),(124,1,'2023-03-17 05:24:41','2023-03-17 05:24:41','<h1>PORTFOLIO</h1>		\n			<h2>OUR PORTFOLIO</h2>		\n			<h3>our works</h3>','Portfolio 1','','inherit','closed','closed','','85-revision-v1','','','2023-03-17 05:24:41','2023-03-17 05:24:41','',85,'https://whatthehell-new.in8.cdn-alpha.com/?p=124',0,'revision','',0),(125,1,'2023-03-17 05:24:41','2023-03-17 05:24:41','<h1>OUR TEAM</h1>		\n			<h2>IDEAS & CONCEPT</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>USER SATISFICATION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>FINAL PRODUCT</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2cc74097\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_7a6ddb9\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_202593c7\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_34c82fb4\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_7428576f\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_42d427a4\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n                            <input type=\"radio\" name=\"ekit_ia_3e82ae33\" id=\"ekit_ia_3e82ae33_0\"  hidden>\n                <label for=\"ekit_ia_3e82ae33_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg)\" >\n                            Packaging\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_3e82ae33\" id=\"ekit_ia_3e82ae33_1\"  hidden>\n                <label for=\"ekit_ia_3e82ae33_1\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg)\" >\n                            Branding\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_3e82ae33\" id=\"ekit_ia_3e82ae33_2\"  hidden>\n                <label for=\"ekit_ia_3e82ae33_2\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg)\" >\n                            Photography\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_3e82ae33\" id=\"ekit_ia_3e82ae33_3\"  hidden>\n                <label for=\"ekit_ia_3e82ae33_3\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg)\" >\n                            Mockup\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_3e82ae33\" id=\"ekit_ia_3e82ae33_4\"  hidden>\n                <label for=\"ekit_ia_3e82ae33_4\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg)\" >\n                            3D Illustration\n                </label>\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>','Our Team','','inherit','closed','closed','','87-revision-v1','','','2023-03-17 05:24:41','2023-03-17 05:24:41','',87,'https://whatthehell-new.in8.cdn-alpha.com/?p=125',0,'revision','',0),(126,1,'2023-03-17 05:24:42','2023-03-17 05:24:42','<h1>TEAM MEMBER</h1>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>LEONY HEART</h2>		\n			<h3>Graphic Designer</h3>		\n		<p><strong>Experience</strong> : 7 Years</p><p><strong>Email</strong> : leonyheart@mail.com</p><p><strong>Phone</strong> :+1 234 567 890</p><p><strong>Fax</strong> : 1 234 567 890</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>PERSONAL BIOGRAPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. Ut laoreet semper ligula, eget pretium purus congue a. Vivamus vehicula tincidunt magna, ac posuere nulla molestie placerat. Vivamus neque orci, scelerisque quis metus vel, bibendum volutpat leo. Donec eu mollis est.</p><p>Sed sit amet dolor et enim elementum pellentesque. Praesent pulvinar odio ligula, nec ultricies nunc vehicula a. Duis sodales purus velit, nec tincidunt tortor maximus sed. Suspendisse imperdiet gravida ex sit amet ullamcorper.</p>		\n			<h2>SKILL SET</h2>		\n                            UI/UX\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            BRANDING\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            ILLUSTRATION\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h2>ACTIVITIES</h2>		\n					<ul>\n							<li>\n										Creative Project 2021\n									</li>\n								<li>\n										Digital project planning and resourcing\n									</li>\n								<li>\n										Marketing Campaign\n									</li>\n								<li>\n										Product Consultant 2021\n									</li>\n								<li>\n										Head of Design and Marketing Department\n									</li>\n						</ul>\n			<h2>PERSONAL EXPERIENCE</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. Ut laoreet semper ligula, eget pretium purus congue a. Vivamus vehicula tincidunt magna, ac posuere nulla molestie placerat. Vivamus neque orci, scelerisque quis metus vel, bibendum volutpat leo. Donec eu mollis est.</p><p>Sed sit amet dolor et enim elementum pellentesque. Praesent pulvinar odio ligula, nec ultricies nunc vehicula a. Duis sodales purus velit, nec tincidunt tortor maximus sed. Suspendisse imperdiet gravida ex sit amet ullamcorper.</p>		\n			<h2>LEAVE A REPLY</h2>		\n			[wpforms id=\"497\"]','Single Member','','inherit','closed','closed','','90-revision-v1','','','2023-03-17 05:24:42','2023-03-17 05:24:42','',90,'https://whatthehell-new.in8.cdn-alpha.com/?p=126',0,'revision','',0),(127,1,'2023-03-17 05:24:42','2023-03-17 05:24:42','<h1>FAQS</h1>		\n			<h2>WE ARE HERE TO HELP YOU</h2>		\n			<h3>quick support</h3>		\n			<h3>ANALYSIS</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>DEVELOPMENT</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>UI/UX</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n<a href=\"?playlist=&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h2>FREQUENTLY ASKED QUESTIONS</h2>		\n			<h3>do you know?</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>','FAQs Page','','inherit','closed','closed','','94-revision-v1','','','2023-03-17 05:24:42','2023-03-17 05:24:42','',94,'https://whatthehell-new.in8.cdn-alpha.com/?p=127',0,'revision','',0),(128,1,'2023-03-17 05:24:42','2023-03-17 05:24:42','<h1>CONTACT US</h1>		\n			<h2>OUR CONTACT</h2>		\n			<h3>get in touch</h3>		\n			<h2>MURRAY</h2>		\n			<a href=\"#\" role=\"button\">\n						2930 Philadelphia Avenue\n					</a>\n			<a href=\"#\" role=\"button\">\n						801-265-6514\n					</a>\n			<a href=\"#\" role=\"button\">\n						anymail@jmail.com\n					</a>\n			<h2>ALABASTA</h2>		\n			<a href=\"#\" role=\"button\">\n						2930 Philadelphia Avenue\n					</a>\n			<a href=\"#\" role=\"button\">\n						801-265-6514\n					</a>\n			<a href=\"#\" role=\"button\">\n						anymail@jmail.com\n					</a>\n			<h2>CONTACT US</h2>		\n			[wpforms id=\"497\"]		\n			<h2>HAVE ANY QUESTION? JUST SAY HI!</h2>		\n			<a href=\"#\" role=\"button\">\n						GET IN TOUCH\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2023-03-17 05:24:42','2023-03-17 05:24:42','',97,'https://whatthehell-new.in8.cdn-alpha.com/?p=128',0,'revision','',0),(129,1,'2023-03-17 05:24:42','2023-03-17 05:24:42','<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>COMING SOON</h2>','Coming Soon','','inherit','closed','closed','','101-revision-v1','','','2023-03-17 05:24:42','2023-03-17 05:24:42','',101,'https://whatthehell-new.in8.cdn-alpha.com/?p=129',0,'revision','',0),(130,1,'2023-03-17 05:24:42','2023-03-17 05:24:42','<h2>4 0 4 </h2>		\n			<h2>SORRY THE PAGE NOT FOUND</h2>		\n		<p>The page you are looking for maybe was moved, removed, renamed or never existed.</p>		\n					<form role=\"search\" action=\"https://whatthehell-new.in8.cdn-alpha.com\" method=\"get\">\n									<input placeholder=\"   Search...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					<button id=\"clear-with-button\" type=\"reset\">\n					</button>\n					<button type=\"submit\">\n					</button>\n				</form>','404 Page','','inherit','closed','closed','','105-revision-v1','','','2023-03-17 05:24:42','2023-03-17 05:24:42','',105,'https://whatthehell-new.in8.cdn-alpha.com/?p=130',0,'revision','',0),(131,1,'2023-03-17 05:24:43','2023-03-17 05:24:43','<h1>BLOG</h1>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>LINDA STRIS</h2>		\n		<p>Life is like a boat</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					<form role=\"search\" action=\"https://whatthehell-new.in8.cdn-alpha.com\" method=\"get\">\n									<input placeholder=\"   Search...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					<button id=\"clear-with-button\" type=\"reset\">\n					</button>\n					<button type=\"submit\">\n					</button>\n				</form>\n			<h2>CATEGORIES</h2>		\n			<h2>GALLERY</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>NEED A DESIGN?</h2>		\n		<p>let\'s get to work</p>		\n			<a href=\"#\" role=\"button\">\n					</a>','Blog','','inherit','closed','closed','','108-revision-v1','','','2023-03-17 05:24:43','2023-03-17 05:24:43','',108,'https://whatthehell-new.in8.cdn-alpha.com/?p=131',0,'revision','',0),(132,1,'2023-03-17 05:24:43','2023-03-17 05:24:43','<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>||</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum. Vestibulum tincidunt porta nulla. Nulla egestas ligula at molestie pulvinar. Cras nec porta lorem, et eleifend risus. Aenean pretium sit amet metus eget volutpat. Sed in diam quis nunc sollicitudin euismod nec in felis.</p><p>Nullam consequat, arcu vitae posuere tincidunt, diam tortor bibendum sapien, in convallis velit est nec odio. In congue faucibus dui eget commodo. Integer et ante nibh. Pellentesque in placerat magna, sed imperdiet quam. Pellentesque nulla massa, convallis sed lectus at, dignissim porttitor mauris. Integer in sapien porta arcu viverra mollis id sit amet tortor. Etiam mattis augue quis mauris pellentesque, quis sollicitudin mauris rhoncus. Duis tincidunt mauris quis euismod consequat. Praesent erat arcu, cursus quis ornare eu, euismod vel nisl. Morbi maximus at lectus vitae tincidunt. Nulla quis scelerisque neque. Donec luctus, ipsum porta luctus porta, neque est vulputate ante, a bibendum est augue vitae erat. Proin ut efficitur tellus. Nulla interdum ornare tempus.</p>		\n			<h2>\"Many of life’s failures are people who did not realize how close they were to success when they gave up.\" – Thomas A. Edison</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. Vivamus pellentesque id tortor sed rutrum. Vestibulum tincidunt porta nulla. Nulla egestas ligula at molestie pulvinar. Cras nec porta lorem, et eleifend risus. Aenean pretium sit amet metus eget volutpat. Sed in diam quis nunc sollicitudin euismod nec in felis.</p>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed faucibus lectus, fermentum hendrerit nisi. Vivamus nec libero cursus, malesuada lacus id, venenatis odio. Integer tempor nunc felis, et dignissim nisi lobortis ac. </p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Reddit\n											</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Life is like a boat</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					<form role=\"search\" action=\"https://whatthehell-new.in8.cdn-alpha.com\" method=\"get\">\n									<input placeholder=\"   Search...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					<button id=\"clear-with-button\" type=\"reset\">\n					</button>\n					<button type=\"submit\">\n					</button>\n				</form>\n			<h2>CATEGORIES</h2>		\n			<h2>GALLERY</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>NEED A DESIGN?</h2>		\n		<p>let\'s get to work</p>		\n			<a href=\"#\" role=\"button\">\n					</a>','Single Post','','inherit','closed','closed','','112-revision-v1','','','2023-03-17 05:24:43','2023-03-17 05:24:43','',112,'https://whatthehell-new.in8.cdn-alpha.com/?p=132',0,'revision','',0),(133,1,'2023-03-17 05:24:43','2023-03-17 05:24:43','<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','114-revision-v1','','','2023-03-17 05:24:43','2023-03-17 05:24:43','',114,'https://whatthehell-new.in8.cdn-alpha.com/?p=133',0,'revision','',0),(134,1,'2023-03-17 05:24:43','2023-03-17 05:24:43','<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>ADDRESS</h2>		\n		<p>2750 Goodwin Avenue, Washington, USA</p>		\n			<h2>EMAIL</h2>		\n		<p>runda@anymail.com</p>		\n			<h2>PHONE</h2>		\n		<p>509-364-0482</p>		\n			<h2>USEFUL LINKS</h2>		\n			<h2>OUR LOCATION</h2>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','116-revision-v1','','','2023-03-17 05:24:43','2023-03-17 05:24:43','',116,'https://whatthehell-new.in8.cdn-alpha.com/?p=134',0,'revision','',0),(136,1,'2023-03-17 05:34:06','2023-03-17 05:34:06','','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 05:34:06','2023-03-17 05:34:06','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=136',0,'revision','',0),(137,1,'2023-03-17 05:34:06','2023-03-17 05:34:06','','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 05:34:06','2023-03-17 05:34:06','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=137',0,'revision','',0),(138,1,'2023-03-17 05:34:07','2023-03-17 05:34:07','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 05:34:07','2023-03-17 05:34:07','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=138',0,'revision','',0),(139,1,'2023-03-17 05:34:54','2023-03-17 05:34:54','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','publish','closed','closed','','footer','','','2023-05-04 18:51:18','2023-05-04 18:51:18','',0,'https://whatthehell-new.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=139',0,'elementor-hf','',0),(140,1,'2023-03-17 05:34:54','2023-03-17 05:34:54','','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-17 05:34:54','2023-03-17 05:34:54','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=140',0,'revision','',0),(141,1,'2023-03-17 05:36:53','2023-03-17 05:36:53','','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-17 05:36:53','2023-03-17 05:36:53','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=141',0,'revision','',0),(142,1,'2023-03-17 05:36:54','2023-03-17 05:36:54','','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-17 05:36:54','2023-03-17 05:36:54','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=142',0,'revision','',0),(143,1,'2023-03-17 05:36:55','2023-03-17 05:36:55','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-17 05:36:55','2023-03-17 05:36:55','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=143',0,'revision','',0),(144,1,'2023-03-17 05:38:07','2023-03-17 05:38:07','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','publish','closed','closed','','home','','','2023-05-04 13:09:06','2023-05-04 13:09:06','',0,'https://whatthehell-new.in8.cdn-alpha.com/?page_id=144',0,'page','',0),(145,1,'2023-03-17 05:38:07','2023-03-17 05:38:07','','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-17 05:38:07','2023-03-17 05:38:07','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=145',0,'revision','',0),(147,1,'2023-03-17 05:44:16','2023-03-17 05:44:16','','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-17 05:44:16','2023-03-17 05:44:16','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=147',0,'revision','',0),(148,1,'2023-03-17 05:44:17','2023-03-17 05:44:17','','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-17 05:44:17','2023-03-17 05:44:17','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=148',0,'revision','',0),(149,1,'2023-03-17 05:44:18','2023-03-17 05:44:18','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-17 05:44:18','2023-03-17 05:44:18','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=149',0,'revision','',0),(150,1,'2023-03-17 05:45:33','2023-03-17 05:45:33','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ABOUT US</h1>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-768x769.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>WELCOME TO OUR AGENCY</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>the best agency</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Digital project planning\n									</li>\n								<li>\n										In-House digital consulting\n									</li>\n								<li>\n										Permanent and contract recruitement\n									</li>\n								<li>\n										Developers and technical architects\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n			<h2>Partners Worldwide</h2>		\n				0\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Awards</h2>		\n			<h2>WE BRING THE BEST THINGS FOR YOU</h2>		\n			<h3>our services</h3>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Product Design</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Development</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Brain Storming</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Marketing</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>WHAT THEY SAY ABOUT US</h2>		\n			<h3>client testimonials</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>','About Us','','publish','closed','closed','','about-us','','','2023-03-17 06:11:30','2023-03-17 06:11:30','',0,'https://whatthehell-new.in8.cdn-alpha.com/?page_id=150',0,'page','',0),(151,1,'2023-03-17 05:45:33','2023-03-17 05:45:33','','About Us','','inherit','closed','closed','','150-revision-v1','','','2023-03-17 05:45:33','2023-03-17 05:45:33','',150,'https://whatthehell-new.in8.cdn-alpha.com/?p=151',0,'revision','',0),(152,1,'2023-03-17 06:11:29','2023-03-17 06:11:29','','About Us','','inherit','closed','closed','','150-revision-v1','','','2023-03-17 06:11:29','2023-03-17 06:11:29','',150,'https://whatthehell-new.in8.cdn-alpha.com/?p=152',0,'revision','',0),(153,1,'2023-03-17 06:11:29','2023-03-17 06:11:29','','About Us','','inherit','closed','closed','','150-revision-v1','','','2023-03-17 06:11:29','2023-03-17 06:11:29','',150,'https://whatthehell-new.in8.cdn-alpha.com/?p=153',0,'revision','',0),(154,1,'2023-03-17 06:11:30','2023-03-17 06:11:30','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ABOUT US</h1>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3-768x769.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_3.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>WELCOME TO OUR AGENCY</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>the best agency</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Digital project planning\n									</li>\n								<li>\n										In-House digital consulting\n									</li>\n								<li>\n										Permanent and contract recruitement\n									</li>\n								<li>\n										Developers and technical architects\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n			<h2>Partners Worldwide</h2>		\n				0\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Awards</h2>		\n			<h2>WE BRING THE BEST THINGS FOR YOU</h2>		\n			<h3>our services</h3>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Product Design</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Development</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/woman-working-on-laptop-and-lying-on-sofa-34PDYDR_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Brain Storming</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Marketing</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus. </p>		\n					<ul>\n							<li>\n										Packaging Design\n									</li>\n								<li>\n										Product Mockup\n									</li>\n								<li>\n										Product Photography\n									</li>\n								<li>\n										Branding ideas\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>WHAT THEY SAY ABOUT US</h2>		\n			<h3>client testimonials</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>','About Us','','inherit','closed','closed','','150-revision-v1','','','2023-03-17 06:11:30','2023-03-17 06:11:30','',150,'https://whatthehell-new.in8.cdn-alpha.com/?p=154',0,'revision','',0),(155,1,'2023-03-17 06:12:52','2023-03-17 06:12:52','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>OUR TEAM</h1>		\n			<h2>IDEAS & CONCEPT</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>USER SATISFICATION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>FINAL PRODUCT</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>MEET THE TEAM</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_442311c1\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_224cf98f\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5895d571\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1fe1ebc8\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_8777136\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2f58a480\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n                            <input type=\"radio\" name=\"ekit_ia_7e308636\" id=\"ekit_ia_7e308636_0\"  hidden>\n                <label for=\"ekit_ia_7e308636_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg)\" >\n                            Packaging\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_7e308636\" id=\"ekit_ia_7e308636_1\"  hidden>\n                <label for=\"ekit_ia_7e308636_1\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg)\" >\n                            Branding\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_7e308636\" id=\"ekit_ia_7e308636_2\"  hidden>\n                <label for=\"ekit_ia_7e308636_2\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg)\" >\n                            Photography\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_7e308636\" id=\"ekit_ia_7e308636_3\"  hidden>\n                <label for=\"ekit_ia_7e308636_3\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg)\" >\n                            Mockup\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_7e308636\" id=\"ekit_ia_7e308636_4\"  hidden>\n                <label for=\"ekit_ia_7e308636_4\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg)\" >\n                            3D Illustration\n                </label>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>','Our Team','','publish','closed','closed','','our-team','','','2023-03-17 06:13:58','2023-03-17 06:13:58','',0,'https://whatthehell-new.in8.cdn-alpha.com/?page_id=155',0,'page','',0),(156,1,'2023-03-17 06:12:52','2023-03-17 06:12:52','','Our Team','','inherit','closed','closed','','155-revision-v1','','','2023-03-17 06:12:52','2023-03-17 06:12:52','',155,'https://whatthehell-new.in8.cdn-alpha.com/?p=156',0,'revision','',0),(157,1,'2023-03-17 06:13:56','2023-03-17 06:13:56','','Our Team','','inherit','closed','closed','','155-revision-v1','','','2023-03-17 06:13:56','2023-03-17 06:13:56','',155,'https://whatthehell-new.in8.cdn-alpha.com/?p=157',0,'revision','',0),(158,1,'2023-03-17 06:13:57','2023-03-17 06:13:57','','Our Team','','inherit','closed','closed','','155-revision-v1','','','2023-03-17 06:13:57','2023-03-17 06:13:57','',155,'https://whatthehell-new.in8.cdn-alpha.com/?p=158',0,'revision','',0),(159,1,'2023-03-17 06:13:58','2023-03-17 06:13:58','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>OUR TEAM</h1>		\n			<h2>IDEAS & CONCEPT</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>USER SATISFICATION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>FINAL PRODUCT</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus auctor tellus eros, sed porta augue feugiat ac. In imperdiet eu metus et faucibus.</p>		\n			<h2>MEET THE TEAM</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_442311c1\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_224cf98f\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5895d571\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1fe1ebc8\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_8777136\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2f58a480\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n                            <input type=\"radio\" name=\"ekit_ia_7e308636\" id=\"ekit_ia_7e308636_0\"  hidden>\n                <label for=\"ekit_ia_7e308636_0\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/jakob-owens-iYDtWGKZ-0Q-unsplash_3.jpg)\" >\n                            Packaging\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_7e308636\" id=\"ekit_ia_7e308636_1\"  hidden>\n                <label for=\"ekit_ia_7e308636_1\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash_3.jpg)\" >\n                            Branding\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_7e308636\" id=\"ekit_ia_7e308636_2\"  hidden>\n                <label for=\"ekit_ia_7e308636_2\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/ian-dooley-y_CSTKJ0bEs-unsplash.jpg)\" >\n                            Photography\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_7e308636\" id=\"ekit_ia_7e308636_3\"  hidden>\n                <label for=\"ekit_ia_7e308636_3\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg)\" >\n                            Mockup\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_7e308636\" id=\"ekit_ia_7e308636_4\"  hidden>\n                <label for=\"ekit_ia_7e308636_4\" style=\"background-image: url(https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg)\" >\n                            3D Illustration\n                </label>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>','Our Team','','inherit','closed','closed','','155-revision-v1','','','2023-03-17 06:13:58','2023-03-17 06:13:58','',155,'https://whatthehell-new.in8.cdn-alpha.com/?p=159',0,'revision','',0),(160,1,'2023-03-17 06:16:14','2023-03-17 06:16:14','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>OUR SERVICES</h1>		\n			<h2>WHAT CAN WE OFFER FOR YOU</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>our best service</h3>		\n			<h3>DEVELOPMENT</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>ANALYSIS</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>UI/UX</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n<a href=\"?playlist=&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. </p>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Creative Project 2021\n									</li>\n								<li>\n										Digital project planning and resourcing\n									</li>\n								<li>\n										Marketing Campaign\n									</li>\n								<li>\n										Product Consultant 2021\n									</li>\n								<li>\n										Head of Design and Marketing Department\n									</li>\n						</ul>\n			<h2>CHOOSE YOUR PLANS</h2>		\n			<h3>pricing plans</h3>		\n			<h2>BASIC</h2>		\n		<p>$119</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<h2>STANDARD</h2>		\n		<p>$129</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<h2>EXPERT</h2>		\n		<p>$139</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>LET\'S WORK TOGETHER </h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>UNIQUE DIGITAL EXPERIENCES</h2>		\n			<h3>our special skills</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n                            UI/UX\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            BRANDING\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            ILLUSTRATION\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            3D PROJECT\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Services','','publish','closed','closed','','services','','','2023-03-17 06:17:53','2023-03-17 06:17:53','',0,'https://whatthehell-new.in8.cdn-alpha.com/?page_id=160',0,'page','',0),(161,1,'2023-03-17 06:16:14','2023-03-17 06:16:14','','Services','','inherit','closed','closed','','160-revision-v1','','','2023-03-17 06:16:14','2023-03-17 06:16:14','',160,'https://whatthehell-new.in8.cdn-alpha.com/?p=161',0,'revision','',0),(162,1,'2023-03-17 06:17:52','2023-03-17 06:17:52','','Services','','inherit','closed','closed','','160-revision-v1','','','2023-03-17 06:17:52','2023-03-17 06:17:52','',160,'https://whatthehell-new.in8.cdn-alpha.com/?p=162',0,'revision','',0),(163,1,'2023-03-17 06:17:52','2023-03-17 06:17:52','','Services','','inherit','closed','closed','','160-revision-v1','','','2023-03-17 06:17:52','2023-03-17 06:17:52','',160,'https://whatthehell-new.in8.cdn-alpha.com/?p=163',0,'revision','',0),(164,1,'2023-03-17 06:17:53','2023-03-17 06:17:53','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>OUR SERVICES</h1>		\n			<h2>WHAT CAN WE OFFER FOR YOU</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>our best service</h3>		\n			<h3>DEVELOPMENT</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>ANALYSIS</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h3>UI/UX</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n<a href=\"?playlist=&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. </p>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Creative Project 2021\n									</li>\n								<li>\n										Digital project planning and resourcing\n									</li>\n								<li>\n										Marketing Campaign\n									</li>\n								<li>\n										Product Consultant 2021\n									</li>\n								<li>\n										Head of Design and Marketing Department\n									</li>\n						</ul>\n			<h2>CHOOSE YOUR PLANS</h2>		\n			<h3>pricing plans</h3>		\n			<h2>BASIC</h2>		\n		<p>$119</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<h2>STANDARD</h2>		\n		<p>$129</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<h2>EXPERT</h2>		\n		<p>$139</p><p>per month</p>		\n		<p>Brand &amp; Identity</p><p>Powerful Customization</p><p>Individual Solutions</p><p>Information Technology</p>Unlimited Domains		\n			<a href=\"#\" role=\"button\">\n						BUY NOW\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>LET\'S WORK TOGETHER </h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>UNIQUE DIGITAL EXPERIENCES</h2>		\n			<h3>our special skills</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n                            UI/UX\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            BRANDING\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            ILLUSTRATION\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n                            3D PROJECT\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1.png 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/trendy-girl-with-long-hair-and-stylish-makeup-in-a-CKV4V9A-copy-1-768x768.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/nathan-duck-Jo5FUEkhB_4-unsplash2-e1617853628890.jpg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Services','','inherit','closed','closed','','160-revision-v1','','','2023-03-17 06:17:53','2023-03-17 06:17:53','',160,'https://whatthehell-new.in8.cdn-alpha.com/?p=164',0,'revision','',0),(165,1,'2023-03-17 06:18:36','2023-03-17 06:18:36','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>BLOG</h1>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>LINDA STRIS</h2>		\n		<p>Life is like a boat</p>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					<form role=\"search\" action=\"https://whatthehell-new.in8.cdn-alpha.com\" method=\"get\">\n									<input placeholder=\"   Search...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					<button id=\"clear-with-button\" type=\"reset\">\n					</button>\n					<button type=\"submit\">\n					</button>\n				</form>\n			<h2>CATEGORIES</h2>		\n			<h2>GALLERY</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h2>NEED A DESIGN?</h2>		\n		<p>let\'s get to work</p>		\n			<a href=\"#\" role=\"button\">\n					</a>','Blog','','publish','closed','closed','','blog','','','2023-03-17 06:19:14','2023-03-17 06:19:14','',0,'https://whatthehell-new.in8.cdn-alpha.com/?page_id=165',0,'page','',0),(166,1,'2023-03-17 06:18:36','2023-03-17 06:18:36','','Blog','','inherit','closed','closed','','165-revision-v1','','','2023-03-17 06:18:36','2023-03-17 06:18:36','',165,'https://whatthehell-new.in8.cdn-alpha.com/?p=166',0,'revision','',0),(167,1,'2023-03-17 06:19:13','2023-03-17 06:19:13','','Blog','','inherit','closed','closed','','165-revision-v1','','','2023-03-17 06:19:13','2023-03-17 06:19:13','',165,'https://whatthehell-new.in8.cdn-alpha.com/?p=167',0,'revision','',0),(168,1,'2023-03-17 06:19:13','2023-03-17 06:19:13','','Blog','','inherit','closed','closed','','165-revision-v1','','','2023-03-17 06:19:13','2023-03-17 06:19:13','',165,'https://whatthehell-new.in8.cdn-alpha.com/?p=168',0,'revision','',0),(169,1,'2023-03-17 06:19:14','2023-03-17 06:19:14','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>BLOG</h1>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>LINDA STRIS</h2>		\n		<p>Life is like a boat</p>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					<form role=\"search\" action=\"https://whatthehell-new.in8.cdn-alpha.com\" method=\"get\">\n									<input placeholder=\"   Search...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					<button id=\"clear-with-button\" type=\"reset\">\n					</button>\n					<button type=\"submit\">\n					</button>\n				</form>\n			<h2>CATEGORIES</h2>		\n			<h2>GALLERY</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/walling-52H5Nfi5WiE-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/milad-b-fakurian-0_8gAoFrzbw-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/mae-mu-GnWKTJlMYsQ-unsplash_2.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-1024x1024.jpg 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-300x300.jpg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-150x150.jpg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash-768x768.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/matheus-ferrero-OsMwKgqSGWU-unsplash.jpg 1500w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h2>NEED A DESIGN?</h2>		\n		<p>let\'s get to work</p>		\n			<a href=\"#\" role=\"button\">\n					</a>','Blog','','inherit','closed','closed','','165-revision-v1','','','2023-03-17 06:19:14','2023-03-17 06:19:14','',165,'https://whatthehell-new.in8.cdn-alpha.com/?p=169',0,'revision','',0),(170,1,'2023-03-17 06:21:33','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-03-17 06:21:33','0000-00-00 00:00:00','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=170',1,'nav_menu_item','',0),(171,1,'2023-03-17 06:21:47','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-03-17 06:21:47','0000-00-00 00:00:00','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=171',1,'nav_menu_item','',0),(172,1,'2023-03-17 06:21:47','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-03-17 06:21:47','0000-00-00 00:00:00','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=172',1,'nav_menu_item','',0),(173,1,'2023-03-17 06:21:47','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-03-17 06:21:47','0000-00-00 00:00:00','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=173',1,'nav_menu_item','',0),(174,1,'2023-03-17 06:21:47','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-03-17 06:21:47','0000-00-00 00:00:00','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=174',1,'nav_menu_item','',0),(175,1,'2023-03-17 06:35:39','2023-03-17 06:35:39','','We','','publish','closed','closed','','we','','','2023-03-17 06:35:39','2023-03-17 06:35:39','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=175',2,'nav_menu_item','',0),(176,1,'2023-03-17 06:35:40','2023-03-17 06:35:40',' ','','','publish','closed','closed','','176','','','2023-03-17 06:35:40','2023-03-17 06:35:40','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=176',6,'nav_menu_item','',0),(177,1,'2023-03-17 06:35:40','2023-03-17 06:35:40',' ','','','publish','closed','closed','','177','','','2023-03-17 06:35:40','2023-03-17 06:35:40','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=177',5,'nav_menu_item','',0),(178,1,'2023-03-17 06:35:40','2023-03-17 06:35:40',' ','','','publish','closed','closed','','178','','','2023-03-17 06:35:40','2023-03-17 06:35:40','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=178',4,'nav_menu_item','',0),(179,1,'2023-03-17 06:35:40','2023-03-17 06:35:40',' ','','','publish','closed','closed','','179','','','2023-03-17 06:35:40','2023-03-17 06:35:40','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=179',3,'nav_menu_item','',0),(180,1,'2023-03-17 06:35:38','2023-03-17 06:35:38',' ','','','publish','closed','closed','','180','','','2023-03-17 06:35:38','2023-03-17 06:35:38','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=180',1,'nav_menu_item','',0),(181,1,'2023-03-17 06:37:29','2023-03-17 06:37:29','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:37:29','2023-03-17 06:37:29','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=181',0,'revision','',0),(182,1,'2023-03-17 06:37:30','2023-03-17 06:37:30','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:37:30','2023-03-17 06:37:30','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=182',0,'revision','',0),(183,1,'2023-03-17 06:37:31','2023-03-17 06:37:31','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/home/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:37:31','2023-03-17 06:37:31','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=183',0,'revision','',0),(184,1,'2023-03-17 06:48:55','2023-03-17 06:48:55','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/home/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:48:55','2023-03-17 06:48:55','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=184',0,'revision','',0),(185,1,'2023-03-17 06:48:56','2023-03-17 06:48:56','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/home/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:48:56','2023-03-17 06:48:56','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=185',0,'revision','',0),(186,1,'2023-03-17 06:48:57','2023-03-17 06:48:57','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:48:57','2023-03-17 06:48:57','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=186',0,'revision','',0),(187,1,'2023-03-17 06:49:22','2023-03-17 06:49:22','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-17 06:49:22','2023-03-17 06:49:22','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=187',0,'revision','',0),(188,1,'2023-03-17 06:49:23','2023-03-17 06:49:23','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-17 06:49:23','2023-03-17 06:49:23','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=188',0,'revision','',0),(189,1,'2023-03-17 06:49:24','2023-03-17 06:49:24','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-17 06:49:24','2023-03-17 06:49:24','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=189',0,'revision','',0),(191,1,'2023-03-17 06:54:02','2023-03-17 06:54:02','','What the hell-digital agency','','inherit','open','closed','','whatthehell-digital-agency','','','2023-03-17 06:54:23','2023-03-17 06:54:23','',8,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp',0,'attachment','image/webp',0),(192,1,'2023-03-17 06:54:28','2023-03-17 06:54:28','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:54:28','2023-03-17 06:54:28','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=192',0,'revision','',0),(193,1,'2023-03-17 06:54:29','2023-03-17 06:54:29','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:54:29','2023-03-17 06:54:29','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=193',0,'revision','',0),(194,1,'2023-03-17 06:54:30','2023-03-17 06:54:30','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" alt=\"What the hell-digital agency\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:54:30','2023-03-17 06:54:30','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=194',0,'revision','',0),(195,1,'2023-03-17 06:57:21','2023-03-17 06:57:21','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" alt=\"What the hell-digital agency\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:57:21','2023-03-17 06:57:21','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=195',0,'revision','',0),(196,1,'2023-03-17 06:57:22','2023-03-17 06:57:22','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" alt=\"What the hell-digital agency\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:57:22','2023-03-17 06:57:22','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=196',0,'revision','',0),(197,1,'2023-03-17 06:57:23','2023-03-17 06:57:23','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" alt=\"What the hell-digital agency\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:57:23','2023-03-17 06:57:23','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=197',0,'revision','',0),(198,1,'2023-03-17 06:58:53','2023-03-17 06:58:53','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" alt=\"What the hell-digital agency\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:58:53','2023-03-17 06:58:53','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=198',0,'revision','',0),(199,1,'2023-03-17 06:58:53','2023-03-17 06:58:53','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" alt=\"What the hell-digital agency\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:58:53','2023-03-17 06:58:53','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=199',0,'revision','',0),(200,1,'2023-03-17 06:58:54','2023-03-17 06:58:54','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" alt=\"What the hell-digital agency\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-17 06:58:54','2023-03-17 06:58:54','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=200',0,'revision','',0),(201,1,'2023-03-17 07:05:19','2023-03-17 07:05:19','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-17 07:05:19','2023-03-17 07:05:19','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=201',0,'revision','',0),(202,1,'2023-03-17 07:05:20','2023-03-17 07:05:20','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"173\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1024x221.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-300x65.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-768x166.png 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-1536x332.png 1536w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Asset-2_logo-2048x443.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-17 07:05:20','2023-03-17 07:05:20','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=202',0,'revision','',0),(203,1,'2023-03-17 07:05:21','2023-03-17 07:05:21','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" title=\"What the hell-digital agency\" alt=\"What the hell-digital agency\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-17 07:05:21','2023-03-17 07:05:21','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=203',0,'revision','',0),(205,1,'2023-03-17 10:50:56','2023-03-17 10:50:56','','placeholder-1.png','','inherit','open','closed','','placeholder-1-png','','','2023-03-17 10:50:56','2023-03-17 10:50:56','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-1-1.png',0,'attachment','image/png',0),(206,1,'2023-03-17 10:50:57','2023-03-17 10:50:57','','team_6.jpg','','inherit','open','closed','','team_6-jpg','','','2023-03-17 10:50:57','2023-03-17 10:50:57','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/team_6.jpg',0,'attachment','image/jpeg',0),(207,1,'2023-03-17 10:50:58','2023-03-17 10:50:58','','client-logo-2.png','','inherit','open','closed','','client-logo-2-png','','','2023-03-17 10:50:58','2023-03-17 10:50:58','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/client-logo-2.png',0,'attachment','image/png',0),(208,1,'2023-03-17 10:50:59','2023-03-17 10:50:59','','client-logo-white.png','','inherit','open','closed','','client-logo-white-png','','','2023-03-17 10:50:59','2023-03-17 10:50:59','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/client-logo-white.png',0,'attachment','image/png',0),(209,1,'2023-03-17 10:56:43','2023-03-17 10:56:43','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-17 10:56:43','2023-03-17 10:56:43','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=209',0,'revision','',0),(210,1,'2023-03-17 10:56:44','2023-03-17 10:56:44','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-17 10:56:44','2023-03-17 10:56:44','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=210',0,'revision','',0),(211,1,'2023-03-17 10:56:45','2023-03-17 10:56:45','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-17 10:56:45','2023-03-17 10:56:45','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=211',0,'revision','',0),(213,1,'2023-03-18 09:52:50','2023-03-18 09:52:50','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-18 09:52:50','2023-03-18 09:52:50','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=213',0,'revision','',0),(214,1,'2023-03-18 09:52:51','2023-03-18 09:52:51','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-5-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>LINDA LINDSAY</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-4-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>TOMMY WONG</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-3-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>PARK OCHUN</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-2-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>GABBY TIM</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n												<img width=\"1000\" height=\"700\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1.png 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-300x210.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/clientlogo_Artboard-1-768x538.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n																															<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n											<strong>JHON SEANA</strong>\n											Designation\n										<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																													\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-18 09:52:51','2023-03-18 09:52:51','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=214',0,'revision','',0),(215,1,'2023-03-18 09:52:52','2023-03-18 09:52:52','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-18 09:52:52','2023-03-18 09:52:52','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=215',0,'revision','',0),(216,1,'2023-03-18 10:33:12','2023-03-18 10:33:12','','placeholder-22.png','','inherit','open','closed','','placeholder-22-png','','','2023-03-18 10:33:12','2023-03-18 10:33:12','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-22.png',0,'attachment','image/png',0),(217,1,'2023-03-18 10:33:13','2023-03-18 10:33:13','','placeholder-23.png','','inherit','open','closed','','placeholder-23-png','','','2023-03-18 10:33:13','2023-03-18 10:33:13','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-23.png',0,'attachment','image/png',0),(218,1,'2023-03-18 10:33:14','2023-03-18 10:33:14','','placeholder-24.png','','inherit','open','closed','','placeholder-24-png','','','2023-03-18 10:33:14','2023-03-18 10:33:14','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-24.png',0,'attachment','image/png',0),(219,1,'2023-03-18 10:33:15','2023-03-18 10:33:15','','placeholder-25.png','','inherit','open','closed','','placeholder-25-png','','','2023-03-18 10:33:15','2023-03-18 10:33:15','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-25.png',0,'attachment','image/png',0),(220,1,'2023-03-18 10:33:16','2023-03-18 10:33:16','','placeholder-26.png','','inherit','open','closed','','placeholder-26-png','','','2023-03-18 10:33:16','2023-03-18 10:33:16','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-26.png',0,'attachment','image/png',0),(221,1,'2023-03-18 10:33:17','2023-03-18 10:33:17','','placeholder-27.png','','inherit','open','closed','','placeholder-27-png','','','2023-03-18 10:33:17','2023-03-18 10:33:17','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-27.png',0,'attachment','image/png',0),(222,1,'2023-03-18 10:33:18','2023-03-18 10:33:18','','placeholder-28.png','','inherit','open','closed','','placeholder-28-png','','','2023-03-18 10:33:18','2023-03-18 10:33:18','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-28.png',0,'attachment','image/png',0),(223,1,'2023-03-18 10:33:19','2023-03-18 10:33:19','','placeholder-29.png','','inherit','open','closed','','placeholder-29-png','','','2023-03-18 10:33:19','2023-03-18 10:33:19','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-29.png',0,'attachment','image/png',0),(224,1,'2023-03-18 10:33:20','2023-03-18 10:33:20','','placeholder-30.png','','inherit','open','closed','','placeholder-30-png','','','2023-03-18 10:33:20','2023-03-18 10:33:20','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-30.png',0,'attachment','image/png',0),(226,1,'2023-03-18 10:49:27','2023-03-18 10:49:27','','What The Hell - Digital Agency','','inherit','open','closed','','what-the-hell-digital-agency','','','2023-03-18 10:49:37','2023-03-18 10:49:37','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/What-The-Hell-Digital-Agency.webp',0,'attachment','image/webp',0),(227,1,'2023-03-18 11:20:02','2023-03-18 11:20:02','','WTH - Best Digital Marketing Agency','','inherit','open','closed','','wth-best-digital-marketing-agency','','','2023-03-18 11:20:25','2023-03-18 11:20:25','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Best-Digital-Marketing-Agency.webp',0,'attachment','image/webp',0),(228,1,'2023-03-18 11:20:03','2023-03-18 11:20:03','','WTH - Digital Marketing Agency','','inherit','open','closed','','wth-digital-marketing-agency','','','2023-03-18 11:20:20','2023-03-18 11:20:20','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Digital-Marketing-Agency.webp',0,'attachment','image/webp',0),(229,1,'2023-03-18 11:26:10','2023-03-18 11:26:10','','WTH - Best Advertising Agency','','inherit','open','closed','','wth-best-advertising-agency','','','2023-03-18 11:26:36','2023-03-18 11:26:36','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Best-Advertising-Agency.webp',0,'attachment','image/webp',0),(230,1,'2023-03-18 11:26:11','2023-03-18 11:26:11','','WTH - Advertising Agency','','inherit','open','closed','','wth-advertising-agency','','','2023-03-18 11:26:23','2023-03-18 11:26:23','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Advertising-Agency.webp',0,'attachment','image/webp',0),(231,1,'2023-03-18 11:35:27','2023-03-18 11:35:27','','WTH - Digital Advertising Agency - 2','','inherit','open','closed','','wth-digital-advertising-agency-2','','','2023-03-18 11:35:58','2023-03-18 11:35:58','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Digital-Advertising-Agency-2.webp',0,'attachment','image/webp',0),(232,1,'2023-03-18 11:35:28','2023-03-18 11:35:28','','WTH - Digital Advertising Agency-1','','inherit','open','closed','','wth-digital-advertising-agency-1','','','2023-03-18 11:35:53','2023-03-18 11:35:53','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Digital-Advertising-Agency-1.webp',0,'attachment','image/webp',0),(233,1,'2023-03-18 11:35:29','2023-03-18 11:35:29','','WTH - Digital Advertising Agency','','inherit','open','closed','','wth-digital-advertising-agency','','','2023-03-18 11:35:43','2023-03-18 11:35:43','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Digital-Advertising-Agency.webp',0,'attachment','image/webp',0),(234,1,'2023-03-18 12:04:55','2023-03-18 12:04:55','','WTH - Team','','inherit','open','closed','','wth-team','','','2023-03-18 12:05:05','2023-03-18 12:05:05','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp',0,'attachment','image/webp',0),(235,1,'2023-03-18 12:08:04','2023-03-18 12:08:04','','WTH - Team 1','','inherit','open','closed','','wth-team-1','','','2023-03-18 12:08:12','2023-03-18 12:08:12','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp',0,'attachment','image/webp',0),(236,1,'2023-03-18 12:09:47','2023-03-18 12:09:47','','WTH - Team 2','','inherit','open','closed','','wth-team-2','','','2023-03-18 12:09:55','2023-03-18 12:09:55','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp',0,'attachment','image/webp',0),(237,1,'2023-03-18 12:11:49','2023-03-18 12:11:49','','WTH - Team 3','','inherit','open','closed','','wth-team-3','','','2023-03-18 12:11:56','2023-03-18 12:11:56','',144,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp',0,'attachment','image/webp',0),(238,1,'2023-03-20 07:26:13','2023-03-20 07:26:13','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-20 07:26:13','2023-03-20 07:26:13','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=238',0,'revision','',0),(239,1,'2023-03-20 07:26:14','2023-03-20 07:26:14','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/young-man-with-interesting-style-U5YJBRD_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/portrait-of-fashion-girl-in-a-black-sweater-with-a-LY8D6QR_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/modern-youth-studio-shot-in-dark-studio-with-neon-PDJUV2W_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/man-with-purple-light-portrait-LQY3DEA.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-20 07:26:14','2023-03-20 07:26:14','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=239',0,'revision','',0),(240,1,'2023-03-20 07:26:15','2023-03-20 07:26:15','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-20 07:26:15','2023-03-20 07:26:15','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=240',0,'revision','',0),(241,1,'2023-03-20 12:52:08','2023-03-20 12:52:08','','WTH (2)','','inherit','open','closed','','wth-2','','','2023-03-20 12:52:08','2023-03-20 12:52:08','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-2.webp',0,'attachment','image/webp',0),(243,1,'2023-03-20 13:11:02','2023-03-20 13:11:02','','WTH 1','','inherit','open','closed','','wth-1','','','2023-03-20 13:11:02','2023-03-20 13:11:02','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-1.webp',0,'attachment','image/webp',0),(244,1,'2023-03-21 08:29:27','2023-03-21 08:29:27','','WTH - 1','','inherit','open','closed','','wth-1-2','','','2023-03-21 08:29:27','2023-03-21 08:29:27','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-1-1.webp',0,'attachment','image/webp',0),(245,1,'2023-03-21 09:19:04','2023-03-21 09:19:04','','WTH 2','','inherit','open','closed','','wth-2-2','','','2023-03-21 09:19:04','2023-03-21 09:19:04','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-2-1.webp',0,'attachment','image/webp',0),(246,1,'2023-03-21 09:22:48','2023-03-21 09:22:48','','WTH 4','','inherit','open','closed','','wth-4','','','2023-03-21 09:22:48','2023-03-21 09:22:48','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-4.webp',0,'attachment','image/webp',0),(247,1,'2023-03-21 09:22:49','2023-03-21 09:22:49','','WTH 3','','inherit','open','closed','','wth-3','','','2023-03-21 09:22:49','2023-03-21 09:22:49','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-3.webp',0,'attachment','image/webp',0),(248,1,'2023-03-21 09:23:25','2023-03-21 09:23:25','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-21 09:23:25','2023-03-21 09:23:25','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=248',0,'revision','',0),(249,1,'2023-03-21 09:23:26','2023-03-21 09:23:26','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-21 09:23:26','2023-03-21 09:23:26','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=249',0,'revision','',0),(250,1,'2023-03-21 09:23:27','2023-03-21 09:23:27','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-21 09:23:27','2023-03-21 09:23:27','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=250',0,'revision','',0),(251,1,'2023-03-21 09:33:31','2023-03-21 09:33:31','','WTH 5','','inherit','open','closed','','wth-5','','','2023-03-21 09:33:31','2023-03-21 09:33:31','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-5.webp',0,'attachment','image/webp',0),(253,1,'2023-03-21 09:49:45','2023-03-21 09:49:45','','WTH 6','','inherit','open','closed','','wth-6','','','2023-03-21 09:49:45','2023-03-21 09:49:45','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-6.webp',0,'attachment','image/webp',0),(254,1,'2023-03-21 09:49:46','2023-03-21 09:49:46','','WTH 7','','inherit','open','closed','','wth-7','','','2023-03-21 09:49:46','2023-03-21 09:49:46','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-7.webp',0,'attachment','image/webp',0);
INSERT INTO `wp_posts` VALUES (255,1,'2023-03-21 09:50:25','2023-03-21 09:50:25','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-21 09:50:25','2023-03-21 09:50:25','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=255',0,'revision','',0),(256,1,'2023-03-21 09:50:26','2023-03-21 09:50:26','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-21 09:50:26','2023-03-21 09:50:26','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=256',0,'revision','',0),(257,1,'2023-03-21 09:50:27','2023-03-21 09:50:27','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-21 09:50:27','2023-03-21 09:50:27','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=257',0,'revision','',0),(258,1,'2023-03-21 09:58:27','2023-03-21 09:58:27','','placeholder.png','','inherit','open','closed','','placeholder-png-4','','','2023-03-21 09:58:27','2023-03-21 09:58:27','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-3.png',0,'attachment','image/png',0),(259,1,'2023-03-21 09:58:29','2023-03-21 09:58:29','','restaurant_5.jpg','','inherit','open','closed','','restaurant_5-jpg','','','2023-03-21 09:58:29','2023-03-21 09:58:29','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/restaurant_5.jpg',0,'attachment','image/jpeg',0),(260,1,'2023-03-21 09:58:30','2023-03-21 09:58:30','','restaurant_6.jpg','','inherit','open','closed','','restaurant_6-jpg','','','2023-03-21 09:58:30','2023-03-21 09:58:30','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/restaurant_6.jpg',0,'attachment','image/jpeg',0),(261,1,'2023-03-21 09:58:30','2023-03-21 09:58:30','','restaurant_3.jpg','','inherit','open','closed','','restaurant_3-jpg','','','2023-03-21 09:58:30','2023-03-21 09:58:30','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/restaurant_3.jpg',0,'attachment','image/jpeg',0),(262,1,'2023-03-21 09:58:31','2023-03-21 09:58:31','','restaurant_7.jpg','','inherit','open','closed','','restaurant_7-jpg','','','2023-03-21 09:58:31','2023-03-21 09:58:31','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/restaurant_7.jpg',0,'attachment','image/jpeg',0),(264,1,'2023-03-21 10:11:45','2023-03-21 10:11:45','','text-mask-image-1.jpg','','inherit','open','closed','','text-mask-image-1-jpg','','','2023-03-21 10:11:45','2023-03-21 10:11:45','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/text-mask-image-1.jpg',0,'attachment','image/jpeg',0),(265,1,'2023-03-21 10:44:11','2023-03-21 10:44:11','','placeholder-297.png','','inherit','open','closed','','placeholder-297-png','','','2023-03-21 10:44:11','2023-03-21 10:44:11','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/placeholder-297.png',0,'attachment','image/png',0),(266,1,'2023-03-21 10:44:12','2023-03-21 10:44:12','','image-accordion-13.jpg','','inherit','open','closed','','image-accordion-13-jpg','','','2023-03-21 10:44:12','2023-03-21 10:44:12','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/image-accordion-13.jpg',0,'attachment','image/jpeg',0),(267,1,'2023-03-21 10:44:12','2023-03-21 10:44:12','','image-accordion-16.jpg','','inherit','open','closed','','image-accordion-16-jpg','','','2023-03-21 10:44:12','2023-03-21 10:44:12','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/image-accordion-16.jpg',0,'attachment','image/jpeg',0),(268,1,'2023-03-21 10:44:12','2023-03-21 10:44:12','','image-accordion-15.jpg','','inherit','open','closed','','image-accordion-15-jpg','','','2023-03-21 10:44:12','2023-03-21 10:44:12','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/image-accordion-15.jpg',0,'attachment','image/jpeg',0),(269,1,'2023-03-21 11:31:53','2023-03-21 11:31:53','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-21 11:31:53','2023-03-21 11:31:53','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=269',0,'revision','',0),(270,1,'2023-03-21 11:31:53','2023-03-21 11:31:53','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>MEET THE TEAM</h2>		\n			<h3>amazing people</h3>		\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_4d13a335\">\n									TIM PARK									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp\" alt=\"WTH - Team\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>TIM PARK</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_1c88dbd\">\n									Jenny S									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-1.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Jenny S</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_2168ab53\">\n									Mike Aiden									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp\" alt=\"WTH - Team 2\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-2.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Mike Aiden</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_282b4d1d\">\n									Lucas Datt									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp\" alt=\"WTH - Team 3\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-768x1024.webp 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-225x300.webp 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3-1152x1536.webp 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WTH-Team-3.webp 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Lucas Datt</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_705423ff\">\n									Astrid Park									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/alone-in-the-room-studio-shot-in-dark-studio-with-TWG33E2_2.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Astrid Park</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n													<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />												\n								<h2>\n																	<a aria-label=\"profile\" href=\"javascript:void(0)\" data-mfp-src=\"#ekit_team_modal_5871c29\">\n									Clark Son									</a>\n																	</h2>\n								<p>Designer</p>\n									<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n						<button type=\"button\">\n													</button>\n									<img width=\"768\" height=\"1024\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-768x1024.jpg 768w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-225x300.jpg 225w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN-1152x1536.jpg 1152w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/beautiful-man-in-formal-wear-and-in-glasses-is-in-EB32FPN.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								\n								<h2>Clark Son</h2>\n								<p>Designer</p>\n									A small river named Duden flows by their place and supplies it with the necessary								\n																	<ul>\n																					<li><strong>Phone:</strong><a href=\"tel:+1 (859) 254-6589\">+1 (859) 254-6589</a></li>\n																					<li><strong>Email:</strong><a href=\"mailto:info@example.com\">info@example.com</a></li>\n																			</ul>\n								<ul>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Facebook\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Twitter\">\n							</a>\n		</li>\n			<li>\n			<a href=\"https://facebook.com\" aria-label=\"Pinterest\">\n							</a>\n		</li>\n	</ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-21 11:31:53','2023-03-21 11:31:53','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=270',0,'revision','',0),(271,1,'2023-03-21 11:31:54','2023-03-21 11:31:54','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-21 11:31:54','2023-03-21 11:31:54','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=271',0,'revision','',0),(273,1,'2023-03-21 19:04:43','2023-03-21 19:04:43','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" title=\"What the hell-digital agency\" alt=\"What the hell-digital agency\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-21 19:04:43','2023-03-21 19:04:43','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=273',0,'revision','',0),(274,1,'2023-03-21 19:04:44','2023-03-21 19:04:44','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" title=\"What the hell-digital agency\" alt=\"What the hell-digital agency\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-21 19:04:44','2023-03-21 19:04:44','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=274',0,'revision','',0),(275,1,'2023-03-21 19:04:45','2023-03-21 19:04:45','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-1.webp\" title=\"WhatTheHell (1)\" alt=\"WhatTheHell (1)\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-21 19:04:45','2023-03-21 19:04:45','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=275',0,'revision','',0),(278,1,'2023-03-21 19:18:24','2023-03-21 19:18:24','','WhatTheHell','','inherit','open','closed','','whatthehell','','','2023-03-21 19:18:24','2023-03-21 19:18:24','',139,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp',0,'attachment','image/webp',0),(279,1,'2023-03-21 19:19:44','2023-03-21 19:19:44','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-1.webp\" title=\"WhatTheHell (1)\" alt=\"WhatTheHell (1)\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-21 19:19:44','2023-03-21 19:19:44','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=279',0,'revision','',0),(280,1,'2023-03-21 19:19:45','2023-03-21 19:19:45','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-1.webp\" title=\"WhatTheHell (1)\" alt=\"WhatTheHell (1)\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-21 19:19:45','2023-03-21 19:19:45','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=280',0,'revision','',0),(281,1,'2023-03-21 19:19:46','2023-03-21 19:19:46','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" title=\"WhatTheHell\" alt=\"WhatTheHell\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-21 19:19:46','2023-03-21 19:19:46','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=281',0,'revision','',0),(282,1,'2023-03-21 19:20:01','2023-03-21 19:20:01','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" alt=\"What the hell-digital agency\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:20:01','2023-03-21 19:20:01','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=282',0,'revision','',0),(283,1,'2023-03-21 19:20:01','2023-03-21 19:20:01','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp\" alt=\"What the hell-digital agency\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Whatthehell-digital-agency-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:20:01','2023-03-21 19:20:01','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=283',0,'revision','',0),(284,1,'2023-03-21 19:20:02','2023-03-21 19:20:02','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:20:02','2023-03-21 19:20:02','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=284',0,'revision','',0),(285,1,'2023-03-21 19:22:25','2023-03-21 19:22:25','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:22:25','2023-03-21 19:22:25','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=285',0,'revision','',0),(286,1,'2023-03-21 19:22:26','2023-03-21 19:22:26','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:22:26','2023-03-21 19:22:26','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=286',0,'revision','',0),(287,1,'2023-03-21 19:22:26','2023-03-21 19:22:26','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:22:26','2023-03-21 19:22:26','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=287',0,'revision','',0),(288,1,'2023-03-21 19:24:23','2023-03-21 19:24:23','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" title=\"WhatTheHell\" alt=\"WhatTheHell\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-21 19:24:23','2023-03-21 19:24:23','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=288',0,'revision','',0),(289,1,'2023-03-21 19:24:24','2023-03-21 19:24:24','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" title=\"WhatTheHell\" alt=\"WhatTheHell\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-21 19:24:24','2023-03-21 19:24:24','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=289',0,'revision','',0),(290,1,'2023-03-21 19:24:24','2023-03-21 19:24:24','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-21 19:24:24','2023-03-21 19:24:24','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=290',0,'revision','',0),(291,1,'2023-03-21 19:25:01','2023-03-21 19:25:01','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:25:01','2023-03-21 19:25:01','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=291',0,'revision','',0),(292,1,'2023-03-21 19:25:01','2023-03-21 19:25:01','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:25:01','2023-03-21 19:25:01','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=292',0,'revision','',0),(293,1,'2023-03-21 19:25:02','2023-03-21 19:25:02','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:25:02','2023-03-21 19:25:02','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=293',0,'revision','',0),(294,1,'2023-03-21 19:27:32','2023-03-21 19:27:32','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:27:32','2023-03-21 19:27:32','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=294',0,'revision','',0),(295,1,'2023-03-21 19:27:32','2023-03-21 19:27:32','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:27:32','2023-03-21 19:27:32','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=295',0,'revision','',0),(296,1,'2023-03-21 19:27:33','2023-03-21 19:27:33','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-03-21 19:27:33','2023-03-21 19:27:33','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=296',0,'revision','',0),(298,1,'2023-03-22 09:58:38','2023-03-22 09:58:38','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 09:58:38','2023-03-22 09:58:38','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=298',0,'revision','',0),(299,1,'2023-03-22 09:58:39','2023-03-22 09:58:39','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 09:58:39','2023-03-22 09:58:39','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=299',0,'revision','',0),(300,1,'2023-03-22 09:58:40','2023-03-22 09:58:40','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                July 5Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                February 2Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                January 31Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                March 30Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                March 30Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                March 30New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                March 30Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                March 30Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 09:58:40','2023-03-22 09:58:40','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=300',0,'revision','',0),(301,1,'2023-03-22 10:00:52','2023-03-22 10:00:52','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                July 5Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                February 2Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                January 31Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                March 30Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                March 30Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                March 30New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                March 30Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                March 30Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 10:00:52','2023-03-22 10:00:52','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=301',0,'revision','',0),(302,1,'2023-03-22 10:00:52','2023-03-22 10:00:52','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                July 5Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                February 2Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                January 31Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                March 30Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                March 30Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                March 30New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                March 30Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                March 30Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 10:00:52','2023-03-22 10:00:52','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=302',0,'revision','',0),(303,1,'2023-03-22 10:00:54','2023-03-22 10:00:54','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                July 5Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                February 2Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                January 31Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                March 30Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                March 30Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                March 30New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                March 30Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                March 30Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 10:00:54','2023-03-22 10:00:54','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=303',0,'revision','',0),(305,1,'2023-03-22 12:25:15','2023-03-22 12:25:15','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                July 5Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                February 2Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                January 31Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                March 30Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                March 30Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                March 30New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                March 30Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                March 30Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 12:25:15','2023-03-22 12:25:15','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=305',0,'revision','',0),(306,1,'2023-03-22 12:25:16','2023-03-22 12:25:16','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                July 5Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                February 2Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                January 31Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                March 30Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                March 30Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                March 30New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                March 30Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                March 30Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 12:25:16','2023-03-22 12:25:16','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=306',0,'revision','',0),(307,1,'2023-03-22 12:25:18','2023-03-22 12:25:18','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                July 5Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                February 2Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                January 31Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                March 30Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                March 30Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                March 30New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                March 30Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                March 30Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 12:25:18','2023-03-22 12:25:18','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=307',0,'revision','',0),(308,1,'2023-03-22 12:26:57','2023-03-22 12:26:57','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                July 5Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                February 2Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                January 31Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                March 30Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                March 30Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                March 30New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                March 30Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                March 30Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 12:26:57','2023-03-22 12:26:57','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=308',0,'revision','',0),(309,1,'2023-03-22 12:26:57','2023-03-22 12:26:57','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                July 5Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                February 2Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                January 31Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                March 30Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                March 30Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                March 30New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                March 30Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                March 30Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 12:26:57','2023-03-22 12:26:57','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=309',0,'revision','',0),(310,1,'2023-03-22 12:26:59','2023-03-22 12:26:59','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-22 12:26:59','2023-03-22 12:26:59','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=310',0,'revision','',0),(313,1,'2023-03-23 09:26:21','2023-03-23 09:26:21','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 09:26:21','2023-03-23 09:26:21','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=313',0,'revision','',0),(314,1,'2023-03-23 09:26:22','2023-03-23 09:26:22','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>we love creating</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id efficitur neque. Phasellus porttitor pharetra libero nec sagittis. Nulla neque velit, commodo vel tempor tristique, pretium nec massa. Vivamus eu enim ut tortor maximus ullamcorper id nec eros.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 09:26:22','2023-03-23 09:26:22','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=314',0,'revision','',0),(315,1,'2023-03-23 09:26:23','2023-03-23 09:26:23','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 09:26:23','2023-03-23 09:26:23','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=315',0,'revision','',0),(317,1,'2023-03-23 09:31:10','2023-03-23 09:31:10','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 09:31:10','2023-03-23 09:31:10','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=317',0,'revision','',0),(318,1,'2023-03-23 09:31:11','2023-03-23 09:31:11','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 09:31:11','2023-03-23 09:31:11','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=318',0,'revision','',0),(319,1,'2023-03-23 09:31:13','2023-03-23 09:31:13','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 09:31:13','2023-03-23 09:31:13','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=319',0,'revision','',0),(320,1,'2023-03-23 09:35:03','2023-03-23 09:35:03','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 09:35:03','2023-03-23 09:35:03','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=320',0,'revision','',0),(321,1,'2023-03-23 09:35:06','2023-03-23 09:35:06','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 09:35:06','2023-03-23 09:35:06','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=321',0,'revision','',0),(322,1,'2023-03-23 09:35:14','2023-03-23 09:35:14','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 09:35:14','2023-03-23 09:35:14','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=322',0,'revision','',0),(324,1,'2023-03-23 10:52:07','2023-03-23 10:52:07','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 10:52:07','2023-03-23 10:52:07','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=324',0,'revision','',0),(325,1,'2023-03-23 10:52:08','2023-03-23 10:52:08','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>ENJOY OUR LATEST WORK</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n				+\n			<h2>PARTNERS WORLDWIDE</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 10:52:08','2023-03-23 10:52:08','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=325',0,'revision','',0),(326,1,'2023-03-23 10:52:09','2023-03-23 10:52:09','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 10:52:09','2023-03-23 10:52:09','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=326',0,'revision','',0),(327,1,'2023-03-23 10:54:37','2023-03-23 10:54:37','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 10:54:37','2023-03-23 10:54:37','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=327',0,'revision','',0),(328,1,'2023-03-23 10:54:37','2023-03-23 10:54:37','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 10:54:37','2023-03-23 10:54:37','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=328',0,'revision','',0),(329,1,'2023-03-23 10:54:39','2023-03-23 10:54:39','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 10:54:39','2023-03-23 10:54:39','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=329',0,'revision','',0),(330,1,'2023-03-23 10:56:29','2023-03-23 10:56:29','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 10:56:29','2023-03-23 10:56:29','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=330',0,'revision','',0),(331,1,'2023-03-23 10:56:29','2023-03-23 10:56:29','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>CLIENT TESTIMONIALS</h2>		\n			<h3>what the say about us</h3>		\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-1_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>LINDA LINDSAY</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-2_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>TOMMY WONG</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-5_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>PARK OCHUN</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-3_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>GABBY TIM</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n									<img width=\"1000\" height=\"1000\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min.jpeg 1000w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-300x300.jpeg 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-150x150.jpeg 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/runda_Artboard-4_portrait-min-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />								\n								<strong>JHON SEANA</strong>\n								Designation\n																						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis maximus maximus sem, ut porta magna condimentum.</p>\n																					<ul>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n																	<li><a></a></li>\n															</ul>\n													<!-- .commentor-content END -->\n	<ul aria-describedby=\"paginations\"></ul>\n			<h2>READ OUR BLOG</h2>		\n			<h3>we also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 10:56:29','2023-03-23 10:56:29','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=331',0,'revision','',0),(332,1,'2023-03-23 10:56:31','2023-03-23 10:56:31','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-03-23 10:56:31','2023-03-23 10:56:31','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=332',0,'revision','',0),(334,1,'2023-03-23 11:57:04','2023-03-23 11:57:04','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-23 11:57:04','2023-03-23 11:57:04','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=334',0,'revision','',0),(335,1,'2023-03-23 11:57:05','2023-03-23 11:57:05','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2021 UNQ Design</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-23 11:57:05','2023-03-23 11:57:05','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=335',0,'revision','',0),(336,1,'2023-03-23 11:57:06','2023-03-23 11:57:06','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-03-23 11:57:06','2023-03-23 11:57:06','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=336',0,'revision','',0),(338,1,'2023-04-04 07:48:42','2023-04-04 07:48:42','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','publish','open','open','','elementor-landing-page-338','','','2023-04-06 11:39:14','2023-04-06 11:39:14','',0,'https://whatthehell-new.in8.cdn-alpha.com/?post_type=e-landing-page&#038;p=338',0,'e-landing-page','',0),(339,1,'2023-03-30 12:08:56','2023-03-30 12:08:56','','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-03-30 12:08:56','2023-03-30 12:08:56','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=339',0,'revision','',0),(340,1,'2023-03-30 12:08:56','2023-03-30 12:08:56','','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-03-30 12:08:56','2023-03-30 12:08:56','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=340',0,'revision','',0),(341,1,'2023-03-30 12:08:57','2023-03-30 12:08:57','','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-03-30 12:08:57','2023-03-30 12:08:57','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=341',0,'revision','',0),(342,1,'2023-03-30 12:14:00','2023-03-30 12:14:00','','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-03-30 12:14:00','2023-03-30 12:14:00','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=342',0,'revision','',0),(343,1,'2023-03-30 12:17:35','2023-03-30 12:17:35','','Chef_logo.png','','inherit','open','closed','','chef_logo-png','','','2023-03-30 12:17:35','2023-03-30 12:17:35','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Chef_logo.png',0,'attachment','image/png',0),(344,1,'2023-03-30 12:17:36','2023-03-30 12:17:36','','Chef_hero_pic.jpg','','inherit','open','closed','','chef_hero_pic-jpg','','','2023-03-30 12:17:36','2023-03-30 12:17:36','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Chef_hero_pic.jpg',0,'attachment','image/jpeg',0),(345,1,'2023-03-30 12:17:37','2023-03-30 12:17:37','','service_icon1.svg','','inherit','open','closed','','service_icon1-svg','','','2023-03-30 12:17:37','2023-03-30 12:17:37','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/service_icon1.svg',0,'attachment','image/svg+xml',0),(346,1,'2023-03-30 12:17:38','2023-03-30 12:17:38','','service_icon2.svg','','inherit','open','closed','','service_icon2-svg','','','2023-03-30 12:17:38','2023-03-30 12:17:38','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/service_icon2.svg',0,'attachment','image/svg+xml',0),(347,1,'2023-03-30 12:17:38','2023-03-30 12:17:38','','service_icon3.svg','','inherit','open','closed','','service_icon3-svg','','','2023-03-30 12:17:38','2023-03-30 12:17:38','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/service_icon3.svg',0,'attachment','image/svg+xml',0),(348,1,'2023-03-30 12:17:39','2023-03-30 12:17:39','','service_icon4.svg','','inherit','open','closed','','service_icon4-svg','','','2023-03-30 12:17:39','2023-03-30 12:17:39','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/service_icon4.svg',0,'attachment','image/svg+xml',0),(349,1,'2023-03-30 12:17:40','2023-03-30 12:17:40','','working_chef_pic2.jpg','','inherit','open','closed','','working_chef_pic2-jpg','','','2023-03-30 12:17:40','2023-03-30 12:17:40','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg',0,'attachment','image/jpeg',0),(350,1,'2023-03-30 12:17:42','2023-03-30 12:17:42','','working_chef_pic3.jpg','','inherit','open','closed','','working_chef_pic3-jpg','','','2023-03-30 12:17:42','2023-03-30 12:17:42','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg',0,'attachment','image/jpeg',0),(351,1,'2023-03-30 12:17:43','2023-03-30 12:17:43','','working_chef_pic1.jpg','','inherit','open','closed','','working_chef_pic1-jpg','','','2023-03-30 12:17:43','2023-03-30 12:17:43','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg',0,'attachment','image/jpeg',0),(352,1,'2023-03-30 12:17:44','2023-03-30 12:17:44','','quote-mark.svg','','inherit','open','closed','','quote-mark-svg','','','2023-03-30 12:17:44','2023-03-30 12:17:44','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/quote-mark.svg',0,'attachment','image/svg+xml',0),(353,1,'2023-03-30 12:17:45','2023-03-30 12:17:45','','call-to-action-pic1.jpg','','inherit','open','closed','','call-to-action-pic1-jpg','','','2023-03-30 12:17:45','2023-03-30 12:17:45','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg',0,'attachment','image/jpeg',0),(354,1,'2023-03-30 12:17:47','2023-03-30 12:17:47','','call-to-action-pic2.jpg','','inherit','open','closed','','call-to-action-pic2-jpg','','','2023-03-30 12:17:47','2023-03-30 12:17:47','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg',0,'attachment','image/jpeg',0),(355,1,'2023-03-30 12:17:47','2023-03-30 12:17:47','','insta-icon-1.svg','','inherit','open','closed','','insta-icon-1-svg','','','2023-03-30 12:17:47','2023-03-30 12:17:47','',0,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/insta-icon-1.svg',0,'attachment','image/svg+xml',0),(356,1,'2023-04-03 17:20:02','2023-04-03 17:20:02','','Digital.agency','','inherit','open','closed','','digital-agency','','','2023-04-03 17:20:02','2023-04-03 17:20:02','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp',0,'attachment','image/webp',0),(357,1,'2023-04-03 17:21:21','2023-04-03 17:21:21','','brain-2062055_1920','','inherit','open','closed','','brain-2062055_1920','','','2023-04-03 17:21:21','2023-04-03 17:21:21','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/brain-2062055_1920.jpg',0,'attachment','image/jpeg',0),(358,1,'2023-04-03 17:27:44','2023-04-03 17:27:44','','Untitled design (16)','','inherit','open','closed','','untitled-design-16','','','2023-04-03 17:27:44','2023-04-03 17:27:44','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/Untitled-design-16.png',0,'attachment','image/png',0),(359,1,'2023-04-04 06:25:42','2023-04-04 06:25:42','','Untitled design (17)','','inherit','open','closed','','untitled-design-17','','','2023-04-04 06:25:42','2023-04-04 06:25:42','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/Untitled-design-17.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (360,1,'2023-04-04 08:12:07','2023-04-04 08:12:07','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself and your friends to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Grocery Shopping					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Chef</h4>		\n			<h2>Henry Simmons</h2>		\n		Lorem ipsum dolor sit amet, consectet adipiscing elit,sed do eiusm por incunt ullat labore et dolore magna aliqua enim alld minm venim quis nostrud ercitaion ullamco labris nisio aliqup exea sint ocae cupidatat nonu old proident sunt iton culpalla officia mollit natoque massa quis enim dnec pede justo, fringilla semper nacish aene vulpte eleifend tellu noyam quam nunc tolos the old fouture.		\n			<a href=\"#bookform\" role=\"button\">\n						Book Chef Henry\n					</a>\n															<img width=\"750\" height=\"859\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2-262x300.jpg 262w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"861\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3-261x300.jpg 261w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"859\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1-262x300.jpg 262w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>Reviews From My Satisfied Clients</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Chef Henry prepared an exceptional birthday dinner for my wife. The food was amazing and our guests were all very impressed by his talent. We had the best time and will definitely book him again for our next dinner party.\"			</p>\n											<cite>Steve Anderson</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“Thank you Henry for a wonderful and unforgettable dining experience! Everything was delicious. You are  Incredibly talented and a wonderful person to work with. I will definitely hire you again for all my future events.\"			</p>\n											<cite>Nick Broughton</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“Chef Henry Is amazing. We hired him to cook for an 8-person work event, and it was a great success. The variety of dishes and courses he prepared were excellent and the service was impeccable!\"			</p>\n											<cite>Aleesha Watkins</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a personal chef for an unforgettable private dining experience</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book Chef Henry\n					</a>\n															<img width=\"260\" height=\"45\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Chef_logo.png\" alt=\"\" loading=\"lazy\" />															\n		Ⓒ  Henry Simmons Personal Chef. All rights reserved		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 08:12:07','2023-04-04 08:12:07','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=360',0,'revision','',0),(361,1,'2023-04-04 08:12:08','2023-04-04 08:12:08','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself and your friends to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Grocery Shopping					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Chef</h4>		\n			<h2>Henry Simmons</h2>		\n		Lorem ipsum dolor sit amet, consectet adipiscing elit,sed do eiusm por incunt ullat labore et dolore magna aliqua enim alld minm venim quis nostrud ercitaion ullamco labris nisio aliqup exea sint ocae cupidatat nonu old proident sunt iton culpalla officia mollit natoque massa quis enim dnec pede justo, fringilla semper nacish aene vulpte eleifend tellu noyam quam nunc tolos the old fouture.		\n			<a href=\"#bookform\" role=\"button\">\n						Book Chef Henry\n					</a>\n															<img width=\"750\" height=\"859\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2-262x300.jpg 262w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"861\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3-261x300.jpg 261w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"859\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1-262x300.jpg 262w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>Reviews From My Satisfied Clients</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Chef Henry prepared an exceptional birthday dinner for my wife. The food was amazing and our guests were all very impressed by his talent. We had the best time and will definitely book him again for our next dinner party.\"			</p>\n											<cite>Steve Anderson</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“Thank you Henry for a wonderful and unforgettable dining experience! Everything was delicious. You are  Incredibly talented and a wonderful person to work with. I will definitely hire you again for all my future events.\"			</p>\n											<cite>Nick Broughton</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“Chef Henry Is amazing. We hired him to cook for an 8-person work event, and it was a great success. The variety of dishes and courses he prepared were excellent and the service was impeccable!\"			</p>\n											<cite>Aleesha Watkins</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a personal chef for an unforgettable private dining experience</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book Chef Henry\n					</a>\n															<img width=\"260\" height=\"45\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Chef_logo.png\" alt=\"\" loading=\"lazy\" />															\n		Ⓒ  Henry Simmons Personal Chef. All rights reserved		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 08:12:08','2023-04-04 08:12:08','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=361',0,'revision','',0),(362,1,'2023-04-04 08:12:09','2023-04-04 08:12:09','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself and your friends to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Chef</h4>		\n			<h2>Henry Simmons</h2>		\n		Lorem ipsum dolor sit amet, consectet adipiscing elit,sed do eiusm por incunt ullat labore et dolore magna aliqua enim alld minm venim quis nostrud ercitaion ullamco labris nisio aliqup exea sint ocae cupidatat nonu old proident sunt iton culpalla officia mollit natoque massa quis enim dnec pede justo, fringilla semper nacish aene vulpte eleifend tellu noyam quam nunc tolos the old fouture.		\n			<a href=\"#bookform\" role=\"button\">\n						Book Chef Henry\n					</a>\n															<img width=\"750\" height=\"859\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2-262x300.jpg 262w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"861\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3-261x300.jpg 261w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"859\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1-262x300.jpg 262w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>Reviews From My Satisfied Clients</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Chef Henry prepared an exceptional birthday dinner for my wife. The food was amazing and our guests were all very impressed by his talent. We had the best time and will definitely book him again for our next dinner party.\"			</p>\n											<cite>Steve Anderson</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“Thank you Henry for a wonderful and unforgettable dining experience! Everything was delicious. You are  Incredibly talented and a wonderful person to work with. I will definitely hire you again for all my future events.\"			</p>\n											<cite>Nick Broughton</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“Chef Henry Is amazing. We hired him to cook for an 8-person work event, and it was a great success. The variety of dishes and courses he prepared were excellent and the service was impeccable!\"			</p>\n											<cite>Aleesha Watkins</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a personal chef for an unforgettable private dining experience</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book Chef Henry\n					</a>\n															<img width=\"260\" height=\"45\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Chef_logo.png\" alt=\"\" loading=\"lazy\" />															\n		Ⓒ  Henry Simmons Personal Chef. All rights reserved		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 08:12:09','2023-04-04 08:12:09','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=362',0,'revision','',0),(364,1,'2023-04-04 09:19:06','2023-04-04 09:19:06','','800x800-Fl-copy-2 (1)','','inherit','open','closed','','800x800-fl-copy-2-1','','','2023-04-04 09:19:06','2023-04-04 09:19:06','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp',0,'attachment','image/webp',0),(365,1,'2023-04-04 09:22:26','2023-04-04 09:22:26','','800x400 (1)','','inherit','open','closed','','800x400-1','','','2023-04-04 09:22:26','2023-04-04 09:22:26','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp',0,'attachment','image/webp',0),(366,1,'2023-04-04 09:23:40','2023-04-04 09:23:40','','800x800 (1)','','inherit','open','closed','','800x800-1','','','2023-04-04 09:23:40','2023-04-04 09:23:40','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp',0,'attachment','image/webp',0),(367,1,'2023-04-04 09:55:30','2023-04-04 09:55:30','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself and your friends to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Chef</h4>		\n			<h2>Henry Simmons</h2>		\n		Lorem ipsum dolor sit amet, consectet adipiscing elit,sed do eiusm por incunt ullat labore et dolore magna aliqua enim alld minm venim quis nostrud ercitaion ullamco labris nisio aliqup exea sint ocae cupidatat nonu old proident sunt iton culpalla officia mollit natoque massa quis enim dnec pede justo, fringilla semper nacish aene vulpte eleifend tellu noyam quam nunc tolos the old fouture.		\n			<a href=\"#bookform\" role=\"button\">\n						Book Chef Henry\n					</a>\n															<img width=\"750\" height=\"859\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2-262x300.jpg 262w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"861\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3-261x300.jpg 261w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"859\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1-262x300.jpg 262w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>Reviews From My Satisfied Clients</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Chef Henry prepared an exceptional birthday dinner for my wife. The food was amazing and our guests were all very impressed by his talent. We had the best time and will definitely book him again for our next dinner party.\"			</p>\n											<cite>Steve Anderson</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“Thank you Henry for a wonderful and unforgettable dining experience! Everything was delicious. You are  Incredibly talented and a wonderful person to work with. I will definitely hire you again for all my future events.\"			</p>\n											<cite>Nick Broughton</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“Chef Henry Is amazing. We hired him to cook for an 8-person work event, and it was a great success. The variety of dishes and courses he prepared were excellent and the service was impeccable!\"			</p>\n											<cite>Aleesha Watkins</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a personal chef for an unforgettable private dining experience</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book Chef Henry\n					</a>\n															<img width=\"260\" height=\"45\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Chef_logo.png\" alt=\"\" loading=\"lazy\" />															\n		Ⓒ  Henry Simmons Personal Chef. All rights reserved		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 09:55:30','2023-04-04 09:55:30','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=367',0,'revision','',0),(368,1,'2023-04-04 09:55:31','2023-04-04 09:55:31','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself and your friends to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Chef</h4>		\n			<h2>Henry Simmons</h2>		\n		Lorem ipsum dolor sit amet, consectet adipiscing elit,sed do eiusm por incunt ullat labore et dolore magna aliqua enim alld minm venim quis nostrud ercitaion ullamco labris nisio aliqup exea sint ocae cupidatat nonu old proident sunt iton culpalla officia mollit natoque massa quis enim dnec pede justo, fringilla semper nacish aene vulpte eleifend tellu noyam quam nunc tolos the old fouture.		\n			<a href=\"#bookform\" role=\"button\">\n						Book Chef Henry\n					</a>\n															<img width=\"750\" height=\"859\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic2-262x300.jpg 262w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"861\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic3-261x300.jpg 261w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"859\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1.jpg 750w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/working_chef_pic1-262x300.jpg 262w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>Reviews From My Satisfied Clients</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Chef Henry prepared an exceptional birthday dinner for my wife. The food was amazing and our guests were all very impressed by his talent. We had the best time and will definitely book him again for our next dinner party.\"			</p>\n											<cite>Steve Anderson</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“Thank you Henry for a wonderful and unforgettable dining experience! Everything was delicious. You are  Incredibly talented and a wonderful person to work with. I will definitely hire you again for all my future events.\"			</p>\n											<cite>Nick Broughton</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“Chef Henry Is amazing. We hired him to cook for an 8-person work event, and it was a great success. The variety of dishes and courses he prepared were excellent and the service was impeccable!\"			</p>\n											<cite>Aleesha Watkins</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a personal chef for an unforgettable private dining experience</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book Chef Henry\n					</a>\n															<img width=\"260\" height=\"45\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Chef_logo.png\" alt=\"\" loading=\"lazy\" />															\n		Ⓒ  Henry Simmons Personal Chef. All rights reserved		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 09:55:31','2023-04-04 09:55:31','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=368',0,'revision','',0),(369,1,'2023-04-04 09:55:32','2023-04-04 09:55:32','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 09:55:32','2023-04-04 09:55:32','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=369',0,'revision','',0),(371,1,'2023-04-04 10:50:14','2023-04-04 10:50:14','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 10:50:14','2023-04-04 10:50:14','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=371',0,'revision','',0),(372,1,'2023-04-04 10:50:15','2023-04-04 10:50:15','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 10:50:15','2023-04-04 10:50:15','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=372',0,'revision','',0),(373,1,'2023-04-04 10:50:17','2023-04-04 10:50:17','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 10:50:17','2023-04-04 10:50:17','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=373',0,'revision','',0),(374,1,'2023-04-04 10:52:21','2023-04-04 10:52:21','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 10:52:21','2023-04-04 10:52:21','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=374',0,'revision','',0),(375,1,'2023-04-04 10:52:21','2023-04-04 10:52:21','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 10:52:21','2023-04-04 10:52:21','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=375',0,'revision','',0),(376,1,'2023-04-04 10:52:22','2023-04-04 10:52:22','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 10:52:22','2023-04-04 10:52:22','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=376',0,'revision','',0),(377,1,'2023-04-04 11:06:01','2023-04-04 11:06:01','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:06:01','2023-04-04 11:06:01','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=377',0,'revision','',0),(378,1,'2023-04-04 11:06:02','2023-04-04 11:06:02','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:06:02','2023-04-04 11:06:02','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=378',0,'revision','',0),(379,1,'2023-04-04 11:06:03','2023-04-04 11:06:03','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:06:03','2023-04-04 11:06:03','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=379',0,'revision','',0),(380,1,'2023-04-04 11:07:12','2023-04-04 11:07:12','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:07:12','2023-04-04 11:07:12','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=380',0,'revision','',0),(381,1,'2023-04-04 11:07:13','2023-04-04 11:07:13','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:07:13','2023-04-04 11:07:13','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=381',0,'revision','',0),(382,1,'2023-04-04 11:07:14','2023-04-04 11:07:14','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:07:14','2023-04-04 11:07:14','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=382',0,'revision','',0),(384,1,'2023-04-04 11:19:43','2023-04-04 11:19:43','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:19:43','2023-04-04 11:19:43','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=384',0,'revision','',0),(385,1,'2023-04-04 11:19:44','2023-04-04 11:19:44','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:19:44','2023-04-04 11:19:44','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=385',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (386,1,'2023-04-04 11:19:46','2023-04-04 11:19:46','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:19:46','2023-04-04 11:19:46','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=386',0,'revision','',0),(388,1,'2023-04-04 11:25:47','2023-04-04 11:25:47','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:25:47','2023-04-04 11:25:47','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=388',0,'revision','',0),(389,1,'2023-04-04 11:25:48','2023-04-04 11:25:48','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Call 991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:25:48','2023-04-04 11:25:48','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=389',0,'revision','',0),(390,1,'2023-04-04 11:25:49','2023-04-04 11:25:49','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/9911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:25:49','2023-04-04 11:25:49','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=390',0,'revision','',0),(391,1,'2023-04-04 11:27:00','2023-04-04 11:27:00','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/9911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:27:00','2023-04-04 11:27:00','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=391',0,'revision','',0),(392,1,'2023-04-04 11:27:01','2023-04-04 11:27:01','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/9911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:27:01','2023-04-04 11:27:01','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=392',0,'revision','',0),(393,1,'2023-04-04 11:27:02','2023-04-04 11:27:02','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 11:27:02','2023-04-04 11:27:02','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=393',0,'revision','',0),(394,1,'2023-04-04 11:52:30','2023-04-04 11:52:30','','jon-tyson-QL0FAxaq2z0-unsplash','','inherit','open','closed','','jon-tyson-ql0faxaq2z0-unsplash','','','2023-04-04 11:52:30','2023-04-04 11:52:30','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg',0,'attachment','image/jpeg',0),(396,1,'2023-04-04 13:54:11','2023-04-04 13:54:11','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 13:54:11','2023-04-04 13:54:11','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=396',0,'revision','',0),(397,1,'2023-04-04 13:54:12','2023-04-04 13:54:12','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"adad9719-f9c4-455d-9485-045c5ad7b8dd\" data-name=\"Layer 1\" width=\"64.0004\" height=\"64.0004\" viewBox=\"0 0 64.0004 64.0004\"><defs><mask id=\"bb63a116-3d59-4394-a075-7703815f7b68\" x=\"0.0008\" y=\"0\" width=\"40.432\" height=\"63.434\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(5.8918 -0.9996)\"><g id=\"fe0ee8c4-94df-4595-8af2-870a62b67fa8\" data-name=\"mask-2\"><polygon id=\"ae057088-4b4e-4557-857e-7ac8e3e98431\" data-name=\"path-1\" points=\"-5.891 1 34.541 1 34.541 64.434 -5.891 64.434 -5.891 1\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"f078bf58-0464-4b3f-9e20-ab5dc0e52430\" data-name=\"Design\"><g id=\"fa2cf62f-58e9-495f-a699-b8074a0cd68a\" data-name=\"Home\"><g id=\"bacb547f-7bad-486a-b6a5-0073883128c8\" data-name=\"Group-18\"><path id=\"b2486ac7-0c27-47e2-8644-6683577e1499\" data-name=\"Fill-1\" d=\"M18.5418,15.6655l.334.06c3.82.688,4.233,4.818,4.233,6.563v6.656h-1.283a.75.75,0,0,0-.717.778v13.808a1.2849,1.2849,0,1,1-2.567,0Zm1.284,30.768a2.8221,2.8221,0,0,0,2.716-2.903V30.5015h.283a1.7868,1.7868,0,0,0,1.717-1.841v-6.372c0-4.493-2.157-7.608-5.628-8.132L17.8258,14a.6851.6851,0,0,0-.464.186.8039.8039,0,0,0-.253.593v28.752a2.8236,2.8236,0,0,0,2.717,2.903Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b018889f-53ba-438e-a7d2-52707bcfe068\" data-name=\"Fill-3\" d=\"M4.741,22.6987l.379.135a3.0028,3.0028,0,0,0,3.017-.58l.19-.168.188.17a2.959,2.959,0,0,0,1.99.758,2.9993,2.9993,0,0,0,1.024-.179l.38-.138v.599a2.3884,2.3884,0,0,1-1.651,2.265.7827.7827,0,0,0-.549.738v17.225a1.3845,1.3845,0,0,1-2.768,0V26.2987a.786.786,0,0,0-.552-.739,2.3879,2.3879,0,0,1-1.648-2.263Zm.421,4.035.146.081v16.709a2.9684,2.9684,0,0,0,3.017,2.91,2.9684,2.9684,0,0,0,3.017-2.91V26.8147l.146-.081a3.9375,3.9375,0,0,0,2.053-3.436v-8.516a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v5.322a1.3845,1.3845,0,0,1-2.768,0v-5.322a.8168.8168,0,0,0-1.632,0v8.516a3.9375,3.9375,0,0,0,2.053,3.436Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"b2189165-9391-4c5f-837d-b6a3f47ed25b\" data-name=\"Fill-5\" d=\"M3.8875,54.4336h14.875a.7195.7195,0,1,0,0-1.434H3.8875a.7195.7195,0,1,0,0,1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"ed31e1e1-2ade-41f6-bb25-9b06295acd53\" data-name=\"Fill-7\" d=\"M24.825,53h-2a.717.717,0,0,0,0,1.434h2a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"fb1ad631-f517-4242-b0ee-90177eff83ec\" data-name=\"Fill-9\" d=\"M24.7254,57h-8.8a.7231.7231,0,1,0,0,1.434h8.8a.723.723,0,1,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"aae5f0a4-1d2f-4d17-a09c-dba2e12405d8\" data-name=\"Fill-11\" d=\"M11.825,57h-1a.717.717,0,0,0,0,1.434h1a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><path id=\"e1d1587e-31a3-4cac-8b0a-4fae1a0cdabe\" data-name=\"Fill-13\" d=\"M6.825,57h-3a.717.717,0,0,0,0,1.434h3a.717.717,0,0,0,0-1.434\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path><g id=\"b0071dc4-71be-4a54-a84c-9adc54366ab8\" data-name=\"Group-17\"><g style=\"mask:url(#bb63a116-3d59-4394-a075-7703815f7b68)\"><path id=\"b3903fb1-3d0a-4a5d-83e5-4d3c889e061b\" data-name=\"Fill-15\" d=\"M32.951,61.5166a1.3606,1.3606,0,0,1-1.363,1.35H-2.939a1.36,1.36,0,0,1-1.361-1.35V11.3816a1.36,1.36,0,0,1,1.362-1.35H31.588a1.3606,1.3606,0,0,1,1.363,1.35ZM2.504,8.4776l25.749-5.885a1.0487,1.0487,0,0,1,.231-.026,1.0346,1.0346,0,0,1,.664.241,1.5877,1.5877,0,0,1,.566,1.261v4.397l-27.21.338a.1714.1714,0,0,1-.137-.162.1745.1745,0,0,1,.137-.164Zm29.084-.012-.283-.001V4.0656A3.1533,3.1533,0,0,0,30.123,1.57a2.6451,2.6451,0,0,0-2.249-.499L-3.142,8.4866a2.9365,2.9365,0,0,0-2.749,2.895v50.135a2.9428,2.9428,0,0,0,2.953,2.917H31.588a2.9428,2.9428,0,0,0,2.953-2.917V11.3826a2.9415,2.9415,0,0,0-2.953-2.917Z\" transform=\"translate(5.8918 -0.9996)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></g><rect width=\"64.0004\" height=\"64.0004\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Business Strategy					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"be148373-1869-403f-8e0a-d7e9ba2cfb10\" data-name=\"Layer 1\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\"><g id=\"af473951-4c28-4c0d-9e9f-c55d0a889cab\" data-name=\"Design\"><g id=\"a7939b03-a141-4514-bc93-e649113168d8\" data-name=\"Home\"><g id=\"bd55d968-60aa-4d51-b7e2-0c1e58dcf5c0\" data-name=\"Group-7\"><polygon id=\"beef9017-98af-4473-a783-c5c35a25c2d1\" data-name=\"Fill-1\" points=\"10.952 10.374 9.708 9.955 7.952 15.536 9.196 15.955 10.952 10.374\" style=\"fill-rule:evenodd\"></polygon><polygon id=\"e7b2966c-b3e6-44ed-869e-73e09d34ffae\" data-name=\"Fill-2\" points=\"14.952 17.374 13.708 16.955 11.952 22.536 13.196 22.955 14.952 17.374\" style=\"fill-rule:evenodd\"></polygon><g id=\"bd82242e-e8d3-4fb7-89e5-3d35bd670f71\" data-name=\"Group-6\"><path id=\"b6ed287a-102d-41c3-9c71-586890b1e632\" data-name=\"Fill-3\" d=\"M30.641,6.02h-10.52V3.1h10.52Zm4.4284,5.39h-9.94L21.1106,7.4117h9.94Zm11.3923.6754.0089.01a1.5726,1.5726,0,0,1,.3956.7936,1.625,1.625,0,0,1-.4251,1.4269c-.0168.0179-.0607.069-.1238.142-.0711.0822-.1647.19-.2709.3117l-.383.4462-.1659.0078a5.3654,5.3654,0,0,0-1.08.1631,5.46,5.46,0,0,0-3.502,2.82l-2.3089,4.8884-.3843-.4926a6.5674,6.5674,0,0,0-.6467-.713l-.1185-.1127v-9.63a.4709.4709,0,0,1-.0129-.089.688.688,0,0,0-.0371-.1784l-.0145-.0436-.0085-.0253a.693.693,0,0,0-.1349-.1993l-.768-.7638.0347-.0352L33.5882,7.8453a1.6,1.6,0,0,1-.0007-2.2586,1.5627,1.5627,0,0,1,2.191-.0052l1.6,1.6214a.7068.7068,0,0,0,.4987.2075.7.7,0,0,0,.7-.6951V2.4125a1.4159,1.4159,0,0,1,.695-1.2764,1.4341,1.4341,0,0,1,1.4669,0,1.4179,1.4179,0,0,1,.6945,1.2758V6.7157a.6988.6988,0,0,0,.7.7024.7059.7059,0,0,0,.5-.2086l1.5907-1.6167a1.5427,1.5427,0,0,1,2.2075.0012,1.6152,1.6152,0,0,1,.01,2.2577l-2.8656,2.9425a.6918.6918,0,0,0-.0293.9271.7019.7019,0,0,0,.9247.1311,1.5522,1.5522,0,0,1,1.94.18l.0311.033Zm-13.496,7.9468A6.6392,6.6392,0,0,0,26.327,26.268l-.011.19-.7769.5153V12.8012H36.0586v7.9615l-.5317-.2209a6.6465,6.6465,0,0,0-2.5612-.51ZM24.14,12.3932V26.9738l-1.5343-1.0181L16.7248,10.3828,19.4218,7.7ZM47.5215,25.03l-.5128.6391-2.6655,1.77-2.8667-1.8967a.7023.7023,0,0,0-.7769,0l-1.0735.7136-.09-.5949a6.5225,6.5225,0,0,0-.1525-.7239l-.0366-.1351,2.8215-5.9786A4.0511,4.0511,0,0,1,48.04,17.3a4.0992,4.0992,0,0,1,.821,6.0576l-.47.583L45.58,21.7772l-.8564,1.1011Zm-32.4338.3936a.7028.7028,0,0,0-.3887.117l-2.8618,1.8981L9.8959,26.1515,3.1434,8.2588a5.4661,5.4661,0,0,1,.6218-5.0544,5.1673,5.1673,0,0,1,4.28-2.26h.0142a5.3313,5.3313,0,0,1,4.9085,3.4441l8.0356,21.283-2.6649,1.7674-2.8618-1.8981a.7026.7026,0,0,0-.3888-.117Zm17.8878-3.999a5.32,5.32,0,0,1,.8691.0721A5.2084,5.2084,0,0,1,38.2257,26.66a1.9409,1.9409,0,0,1-.0153.2184c-.004.0349-.008.07-.01.108l-.039.6651L34.98,25.5408a.704.704,0,0,0-.7773,0L31.34,27.439l-2.8618-1.9a.705.705,0,0,0-.1991-.085l-.4-.1038.1331-.389a5.2412,5.2412,0,0,1,4.9627-3.5361ZM17.6388,28.6461V62.07H12.9207a3.6292,3.6292,0,0,1-3.6344-3.6157V27.42l2.1619,1.43a.7038.7038,0,0,0,.7778,0l2.8619-1.8981Zm25.2367,34.816V62.07H19.038V28.644l2.5509-1.6915,2.862,1.898a.7037.7037,0,0,0,.7774,0l2.8617-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.8618-1.898,2.862,1.898a.7035.7035,0,0,0,.7773,0l2.862-1.8981,2.8621,1.9a.7035.7035,0,0,0,.777,0l2.1623-1.4334V44.06h1.3993V26.2989l1.6481-2.0565a5.4738,5.4738,0,0,0,.4016-6.552L50.165,17.42l4.1214-3.78-.9487-1.0237-4.137,3.7925-.2529-.1748c-.0267-.0185-.0523-.0381-.0777-.0581-.0151-.0116-.03-.0234-.0458-.0342-.0913-.0621-.19-.1179-.2947-.1769l-.3767-.2134,2.7981-5.1375L49.72,9.9507l-1.41,2.5914-.3256-.6749a2.9291,2.9291,0,0,0-.5322-.7631l-.0309-.029a2.9211,2.9211,0,0,0-.87-.6069l-.4937-.2251,1.3868-1.4238a3.0119,3.0119,0,0,0-.0183-4.2055,2.9406,2.9406,0,0,0-2.0916-.8793H45.32a2.927,2.927,0,0,0-1.8581.6668l-.6289.5185V2.4041a2.8275,2.8275,0,0,0-5.655,0v2.49l-.622-.4885a3.0121,3.0121,0,0,0-3.8742.1307l-.6417.5785V2.4041a.6987.6987,0,0,0-.7-.696H19.4218a.6986.6986,0,0,0-.7.696V6.4276L16.185,8.9518,14.2766,3.8979A6.7477,6.7477,0,0,0,8.0508-.4477h-.017a6.5409,6.5409,0,0,0-5.416,2.8611,6.8517,6.8517,0,0,0-.784,6.3345l6.338,16.7858-.1351.1694a.6872.6872,0,0,0-.15.4189V58.4546a5.0355,5.0355,0,0,0,5.0341,5.0075H42.8755Z\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path><path id=\"bd4537b2-d597-4911-8156-5bd6e74c6382\" data-name=\"Fill-5\" d=\"M55.9882,48.3716a3.9015,3.9015,0,0,1,3.9079,3.8772,16.5441,16.5441,0,0,1-1.7471,7.3585l-.3777.7539a3.0756,3.0756,0,0,1-2.77,1.7091,3.1641,3.1641,0,0,1-1.3974-.3259L52.24,61.0652a.703.703,0,0,0-.6253,0l-1.3636.6788a3.1547,3.1547,0,0,1-1.3883.3262,3.0811,3.0811,0,0,1-2.7788-1.7054L45.706,59.61a16.5448,16.5448,0,0,1-1.747-7.36,3.9017,3.9017,0,0,1,6.6539-2.7419l.82.8157a.7028.7028,0,0,0,.9894,0l.82-.8155a3.9089,3.9089,0,0,1,2.746-1.1362M48.8608,63.4623a4.5809,4.5809,0,0,0,2.0158-.4732l1.0511-.5225,1.05.5227a4.583,4.583,0,0,0,2.0153.473H55.01a4.4538,4.4538,0,0,0,4.012-2.4762l.3788-.7535a17.9667,17.9667,0,0,0,1.8948-7.9838,5.28,5.28,0,0,0-8.08-4.4657l-.5885.3686V46.5978a2.5462,2.5462,0,0,1,2.1671-2.5091v-1.402a3.9428,3.9428,0,0,0-3.5663,3.9111v1.5539l-.5885-.3686A5.28,5.28,0,0,0,42.56,52.25a17.9744,17.9744,0,0,0,1.8951,7.9814l.3778.7543a4.4554,4.4554,0,0,0,4.0127,2.4769h.0155\" transform=\"translate(0.6568 0.4927)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"64\" height=\"64\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Web Design					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"b0773259-7394-4af7-86ea-180860697b20\" data-name=\"Layer 1\" width=\"78.8975\" height=\"78.8975\" viewBox=\"0 0 78.8975 78.8975\"><defs><mask id=\"ea1726cd-e5f4-455c-bb0b-6e55288a6b41\" x=\"0\" y=\"20.9709\" width=\"78.8975\" height=\"49.9516\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a2d20fe5-f538-429f-b8c7-1384c1566d70\" data-name=\"mask-2\"><polygon id=\"ef9ca582-04d8-4520-9bfd-83d0ed0322ec\" data-name=\"path-1\" points=\"0 9.061 78.897 9.061 78.897 59.012 0 59.012 0 9.061\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"bbf03ddd-eb03-42cb-a302-a3328152b88f\" x=\"17.0025\" y=\"7.9749\" width=\"6.8913\" height=\"6.8911\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a73bcb38-6bee-4968-ad4f-260255a61563\" data-name=\"mask-4\"><polygon id=\"fbc46aef-10a7-48e5-9df7-801bf7dc43ad\" data-name=\"path-3\" points=\"17.002 -3.935 23.894 -3.935 23.894 2.956 17.002 2.956 17.002 -3.935\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask><mask id=\"a3795f3b-8e94-451c-955d-95d83908183c\" x=\"0\" y=\"7.9225\" width=\"79\" height=\"64\" maskUnits=\"userSpaceOnUse\"><g transform=\"translate(0 11.9101)\"><g id=\"a7c66f46-81d0-4918-8c61-91d8dbc82fb1\" data-name=\"mask-6\"><polygon id=\"aae31904-845b-44a6-a42d-75f6a08ca8d7\" data-name=\"path-5\" points=\"0 60.012 79 60.012 79 -3.988 0 -3.988 0 60.012\" style=\"fill:#fff;fill-rule:evenodd\"></polygon></g></g></mask></defs><g id=\"aec1191d-458f-42b8-be17-b541265a9e9e\" data-name=\"Design\"><g id=\"acb83089-e8b4-4e69-80b9-74eae8624b01\" data-name=\"Home\"><g id=\"a73a2d02-07aa-4b2f-aaa3-7e8e31e63287\" data-name=\"Group-16\"><g id=\"e1ff1d68-8718-4b59-b062-f4a30096ba41\" data-name=\"Group-3\"><g style=\"mask:url(#ea1726cd-e5f4-455c-bb0b-6e55288a6b41)\"><path id=\"bb4ad323-4c5c-47f8-870e-0b6264808069\" data-name=\"Fill-1\" d=\"M75.3084,10.6759a1.67,1.67,0,0,0-.6919.1495l-16.328,7.4759.53.4511a3.929,3.929,0,0,1,1.38,2.91l.0141.6925,16.1458-7.887a1.6964,1.6964,0,0,0,.752-2.27l-.292-.5855a1.6756,1.6756,0,0,0-1.5094-.9368Zm-19.6431,10.88a.8077.8077,0,0,1,.4409,1.4832l-1.2766.853,1.169.1523a2.205,2.205,0,0,0,.85-.055l.0419-.011.7651-.3741.0357-.0275a2.3171,2.3171,0,0,0-1.41-4.15A2.304,2.304,0,0,0,53.97,21.6885l-.021.8525,1.2774-.8537a.7992.7992,0,0,1,.4388-.1314Zm-10.1368,6.621a1.7111,1.7111,0,0,0-1.6855,1.4769,15.7132,15.7132,0,0,1-1.5462,5.0075l-.66,1.31,1.2723-.7247c1.2284-.7,2.3764-1.4132,3.4118-2.12l.4408-.3011-.1585-.1588a6.7708,6.7708,0,0,0,.4756-1.712l.0209.0209.1061-.9084a1.7684,1.7684,0,0,0,.0115-.1974,1.6928,1.6928,0,0,0-1.6881-1.6925ZM20.4674,30.3385c-2.0817.833-4.0779,1.7153-5.9328,2.6227l-.3674.18.15.3812c2.0075,5.0911,5.6021,8.1711,10.6841,9.1545l.1074.0207.1045-.0318c1.2544-.3815,2.5347-.8,3.8057-1.2432a94.947,94.947,0,0,0,8.8186-3.5671l.0581-.027.0482-.0423a13.7954,13.7954,0,0,0,4.3026-8.3483,3.3156,3.3156,0,0,1,3.27-2.8732,3.3731,3.3731,0,0,1,.3572.0193,3.3142,3.3142,0,0,1,2.9315,3.6476l-.1239,1.1553.8593-.7793A13.5237,13.5237,0,0,0,51.012,29.041c.8594-1.103,1.1888-2.0383.9563-2.7092s-1.07-1.2-2.4216-1.5283a16.7,16.7,0,0,0-3.8513-.3756c-.7023,0-1.4543.0272-2.2353.0808a76.0725,76.0725,0,0,0-18.8258,4.2706c-.5974.2086-1.2029.4264-1.8.6472l-.495.1831.2669.4564a13.1021,13.1021,0,0,0,.979,1.4431l-1.2378,1.0343a14.6086,14.6086,0,0,1-1.33-2.0072l-.1883-.3427ZM3.87,31.9269a1.1156,1.1156,0,0,0-1.1125,1.1254,17.8237,17.8237,0,0,0,1.5393,6.7726c1.4533,3.16,3.6784,5.008,6.6154,5.4988l1.099.2032.0657-.0076a64.4976,64.4976,0,0,0,8.7346-1.6319l1.21-.314-1.1383-.518a14.5235,14.5235,0,0,1-3.6047-2.34,17.0333,17.0333,0,0,1-4.4695-6.6321,33.94,33.94,0,0,1-1.872-13.6195c.0019-.0361.0028-.0727.0028-.1092a2.1708,2.1708,0,1,0-4.3415-.0013v8.84a2.7372,2.7372,0,0,1-2.7261,2.7328ZM1.9019,44.2609a3.9553,3.9553,0,0,0,2.2052,1.137,12.58,12.58,0,0,0,1.6909.2761l1.4269.134-1.1042-.9162a11.4861,11.4861,0,0,1-2.8493-3.5186l-.3255-.62-.4188.56a3.0823,3.0823,0,0,0-.8657,2.4791V43.8l.1684.4856ZM3.56,47.7176a20.6413,20.6413,0,0,0,10.4406,8.04,27.4045,27.4045,0,0,0,9.478,1.6405A31.7021,31.7021,0,0,0,33.9342,55.59C45.8836,51.4216,53.85,40.8787,52.8769,30.52l-.1-1.0649-.68.8239a23.4488,23.4488,0,0,1-4.7611,4.1077,61.4061,61.4061,0,0,1-8.5173,4.79l-.0616.0286A96.1724,96.1724,0,0,1,29.55,42.9466c-1.325.4621-3.8662,1.2944-4.32,1.4091l-.0249-.0041-.0963.0288A70.7171,70.7171,0,0,1,10.3049,47.303c-.8525.0586-1.6654.0883-2.4161.0883-.0922.0013-.1783.0019-.2644.0019a18.7736,18.7736,0,0,1-3.6086-.3508l-1.02-.2ZM23.353,59.0124a29.005,29.005,0,0,1-9.9074-1.7394C6.9321,54.8813,2.215,50.3094.1649,44.4c-.5033-1.4517.1469-3.16,1.9329-5.0777l.1806-.1939-.0854-.2514a19.7275,19.7275,0,0,1-1.0455-5.8256A2.7331,2.7331,0,0,1,3.872,30.3129a1.12,1.12,0,0,0,1.1167-1.1172V20.3541c0-.0565.0016-.1142.0042-.1717a3.7789,3.7789,0,0,1,3.7725-3.61q.0916,0,.1841.0046a3.7865,3.7865,0,0,1,3.5953,3.9673A35.2363,35.2363,0,0,0,13.5176,31.08l.1385.5159.48-.2323c1.8046-.873,3.7211-1.7168,5.6964-2.5075l.3753-.15-.116-.3881a9.9568,9.9568,0,0,1,.048-5.8734,11.7274,11.7274,0,0,1,2.2443-4.0628l1.139,1.1379a9.168,9.168,0,0,0-1.9365,8.135l.1262.4689.4541-.169c.6419-.2391,1.2943-.4744,1.939-.6991,8.101-2.8258,15.951-4.4464,21.5369-4.4464a13.7115,13.7115,0,0,1,5.9583,1.0336l.2293.115.8658-.5792-.1147-.325a3.9124,3.9124,0,0,1-.2239-1.3078,3.9756,3.9756,0,0,1,2.8983-3.835l.0335-.0094L73.9541,9.3549a3.2844,3.2844,0,0,1,4.3031,1.5361l.3154.6333a3.3149,3.3149,0,0,1-1.5446,4.4125l-19.75,9.61a3.8957,3.8957,0,0,1-3.2563-.59l-1.3952-.99.742,1.5441a2.9042,2.9042,0,0,1,.122.2931c2.0487,5.907,1.1791,12.4275-2.4494,18.3578A31.3986,31.3986,0,0,1,34.463,57.1149a33.3471,33.3471,0,0,1-10.9856,1.8975Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><path id=\"a85c3b75-dd54-4f3b-b9e4-0354cafa7e70\" data-name=\"Fill-4\" d=\"M10.5,5.7209a1.7916,1.7916,0,1,0,1.7915,1.792A1.7934,1.7934,0,0,0,10.5,5.7209m0,5.2916a3.5,3.5,0,1,1,3.5-3.5,3.5041,3.5041,0,0,1-3.5,3.5\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path><g id=\"eb276867-ec2a-49aa-a21a-edcefe1ed2ed\" data-name=\"Group-8\"><g style=\"mask:url(#bbf03ddd-eb03-42cb-a302-a3328152b88f)\"><path id=\"e8bbeb55-ce40-4715-8cbe-322ddb11a336\" data-name=\"Fill-6\" d=\"M20.4481-2.2533A1.7656,1.7656,0,0,0,18.6844-.49a1.7682,1.7682,0,0,0,1.7632,1.7639A1.7659,1.7659,0,0,0,22.2118-.49a1.7656,1.7656,0,0,0-1.7637-1.7636Zm0,5.2093A3.45,3.45,0,0,1,17.0025-.49a3.45,3.45,0,0,1,3.4456-3.4454A3.45,3.45,0,0,1,23.8937-.49,3.4557,3.4557,0,0,1,20.4476,2.956Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"b467cf56-2c16-411e-9c3c-b4462561b7b1\" data-name=\"Fill-9\" points=\"17 26.923 19 26.923 19 24.923 17 24.923 17 26.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"bbf7450e-1430-4282-a581-5fee1528cf58\" data-name=\"Fill-11\" points=\"15 37.923 17 37.923 17 35.923 15 35.923 15 37.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"f86b392a-56d2-4fae-88e2-9350ee7dac75\" data-name=\"Fill-12\" points=\"22 48.923 24 48.923 24 46.923 22 46.923 22 48.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><polygon id=\"a99efd33-be7f-4517-a33e-a8049e66ae35\" data-name=\"Fill-13\" points=\"2 25.923 4 25.923 4 23.923 2 23.923 2 25.923\" style=\"fill-rule:evenodd\"></polygon></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a13ff770-8b40-4a68-9630-2cd1c86784f5\" data-name=\"Fill-14\" d=\"M12.2206,45.0125a8.1679,8.1679,0,0,1-3.2206-5h1.4379A6.9587,6.9587,0,0,0,13,43.6627Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g><g style=\"mask:url(#a3795f3b-8e94-451c-955d-95d83908183c)\"><path id=\"a68f1127-c8e5-42b6-99d7-fe17f25306f0\" data-name=\"Fill-15\" d=\"M22,11.0125c.2278-3.5646,2.8783-6.9223,3.81-8L27,4.2647a17.9,17.9,0,0,0-1.5594,2.1214,10.712,10.712,0,0,0-1.7583,4.6264Z\" transform=\"translate(0 11.9101)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect width=\"78.8975\" height=\"78.8975\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Prep &amp; Cooking					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"ebd06709-6500-43d3-8a93-50b90723a377\" data-name=\"Layer 1\" width=\"63\" height=\"63.4573\" viewBox=\"0 0 63 63.4573\"><g id=\"fc465757-cd4e-4525-ab9d-5f605be7537a\" data-name=\"Design\"><g id=\"f0816ff5-3e21-48c5-859e-9feccb46c07c\" data-name=\"Home\"><g id=\"bf2bc8f4-101b-4fa1-a345-cdb1a2967d32\" data-name=\"Group-7\"><g id=\"b479dc08-0f8e-4ce3-933c-a13effa9b434\" data-name=\"Group-3\"><path id=\"e052da3f-5f9c-4fe2-8cfc-a2b64a53446d\" data-name=\"Fill-1\" d=\"M51.9621,14.02a8.0682,8.0682,0,0,0-3.2-3.6l-.1-.1.1-.1a8.6989,8.6989,0,0,0,3.2-3.6l.1-.1.1.1a8.0682,8.0682,0,0,0,3.2,3.6l.1.1-.1.1a8.6989,8.6989,0,0,0-3.2,3.6l-.1.1Zm-30.2,31.9h0a19.2268,19.2268,0,0,0,8.7,2.1,18.7264,18.7264,0,0,0,9-2.2h.1l.7,6.8h0a25.1622,25.1622,0,0,1-9.8,1.9,26.3727,26.3727,0,0,1-9.6-1.8h0Zm18.6-36.8c0,.1,2.1,19.4,2.3,22l-3,.3-.3-2.6a3.09,3.09,0,0,0-1.1-2l-1-.8a1.6058,1.6058,0,0,1-.5-1.1l.9-15.7a1.3886,1.3886,0,0,1,.5-1,1.3568,1.3568,0,0,1,2.2.9Zm-9.9,1.2a20.1742,20.1742,0,0,1,5.4.8h0l-.7,13.7a3.4081,3.4081,0,0,0,1.1,2.5l.3.3a2.4909,2.4909,0,0,1,1.1,1.4l1.6,14.8h0a18.1148,18.1148,0,0,1-17.3.2h0l2.1-15.7a.6644.6644,0,0,1,.4-.5,4.9194,4.9194,0,0,0,3.2-4.1l1.4-10.7a1.4315,1.4315,0,0,0-.3-1.1,1.7005,1.7005,0,0,0-1-.6l-2.1-.3-.6-.1a44.1438,44.1438,0,0,1,5.4-.6Zm-14.5,7.5-.1.3-.5,4a5.128,5.128,0,0,0,2.1,4.8.7127.7127,0,0,1,.3.6l-1.5,11.6-.2-.2a17.808,17.808,0,0,1-3.5-10.7c0-3.2,1.6-7.5,3.4-10.4Zm3.4,9.9a2.3453,2.3453,0,0,0-1-2.2,3.2225,3.2225,0,0,1-1.3-3.2l1.4-10.5,1.8.2-1.2,8.8a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.9.3-1.1,8.7a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l1.2-8.8,1.8.2-1.4,10.5a3.47,3.47,0,0,1-2.1,2.7,2.2929,2.2929,0,0,0-1.5,1.9l-.5,3.4-3-.4Zm23.5-12.4a17.7944,17.7944,0,0,1,2.4,22.9l-.1.1-2.5-23.2Zm1.3,45.9a1.4021,1.4021,0,0,1-1.4-1.2l-2.9-26.9,3-.3,2.9,26.9a1.6894,1.6894,0,0,1-.3,1,1.3459,1.3459,0,0,1-1.2.5Zm5.9-13.3a27.9714,27.9714,0,0,0,4.1-34.1h0a6.7183,6.7183,0,0,1,2.9-2.4,1.2143,1.2143,0,0,0,0-2.2c-2.5-.9-3.5-3.3-4-4.7a1.0838,1.0838,0,0,0-1.1-.8,1.17,1.17,0,0,0-1.1.8,9.68,9.68,0,0,1-1.7,3.1h0a29.1084,29.1084,0,0,0-3.3-2.6.7494.7494,0,0,0-.5-.1.67.67,0,0,0-.7.4.6613.6613,0,0,0-.1.6.6644.6644,0,0,0,.4.5,20.9069,20.9069,0,0,1,2.9,2.3l.1.2h-.1a2.994,2.994,0,0,1-.8.4,1.2143,1.2143,0,0,0,0,2.2c2.5.9,3.5,3.3,4,4.7a1.0838,1.0838,0,0,0,1.1.8,1.17,1.17,0,0,0,1.1-.8,2.5665,2.5665,0,0,1,.2-.5l.1.1a25.829,25.829,0,0,1,3.2,12.5,26.1728,26.1728,0,0,1-10,20.7l-.1.1-1.2-8.2h0a19.9191,19.9191,0,0,0,4.6-12.6,19.6618,19.6618,0,0,0-7.6-15.5h0l-.4-3.9a3.1313,3.1313,0,0,0-3.1-2.7,4.2528,4.2528,0,0,0-1.1.2,3.3283,3.3283,0,0,0-1,.6,3.0125,3.0125,0,0,0-.9,2.3v.1h-.1a20.1742,20.1742,0,0,0-5.4-.8,19.3009,19.3009,0,0,0-8.5,2h0l-3.5-.5h-.2a1.5974,1.5974,0,0,0-1.5,1.3l-.4,3.3h0a19.6114,19.6114,0,0,0-.5,26.7h0l-1,7.8-.1-.1a27.1854,27.1854,0,0,1-7.5-9,25.6219,25.6219,0,0,1-2.8-11.8,26.1192,26.1192,0,0,1,26-26.2,25.4961,25.4961,0,0,1,10.9,2.4c.1.1.2.1.4.1a1.02,1.02,0,0,0,.8-.5.8408.8408,0,0,0-.4-1.1,27.7413,27.7413,0,0,0-31.2,5.7,26.6672,26.6672,0,0,0-8.3,19.6,27.2968,27.2968,0,0,0,8.2,19.6,27.6184,27.6184,0,0,0,3.7,3.1h0l-.2,1.6a.8967.8967,0,0,0,.7,1h.1a.7728.7728,0,0,0,.8-.7l2.7-20.1,3,.4-3.5,26.8a1.4021,1.4021,0,0,1-1.4,1.2,1.901,1.901,0,0,1-1.3-.5,1.6894,1.6894,0,0,1-.3-1l.3-2.4a.8967.8967,0,0,0-.7-1h-.1a.7728.7728,0,0,0-.8.7l-.3,2.4a3.2215,3.2215,0,0,0,.6,2.3,2.791,2.791,0,0,0,2.5,1.2,3.1176,3.1176,0,0,0,3.2-2.7l.8-5.9h.1a27.0387,27.0387,0,0,0,9.8,1.8,27.5737,27.5737,0,0,0,9.9-1.8h.1c.1,1.3.6,5.9.6,5.9a3.1176,3.1176,0,0,0,3.2,2.7,3.22,3.22,0,0,0,3.2-3.5l-1-8.5h0a25.17,25.17,0,0,0,3.5-3Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g><g id=\"e0d032a5-0960-40d8-9010-f77913ea30de\" data-name=\"Group-6\"><path id=\"af4eabf0-815c-44d3-8ad8-1b85960c9aad\" data-name=\"Fill-4\" d=\"M6.3621,55.12v-.1a8.2549,8.2549,0,0,0-2.1-2.4h0a6.1114,6.1114,0,0,0,2.1-2.4l.1-.1.1.1a8.2549,8.2549,0,0,0,2.1,2.4h0a7.2788,7.2788,0,0,0-2.2,2.4Zm4.1-3.5a5.2088,5.2088,0,0,1-3-3.5.9934.9934,0,0,0-1-.7.9934.9934,0,0,0-1,.7,5.488,5.488,0,0,1-3,3.5,1.15,1.15,0,0,0-.8,1,1.2041,1.2041,0,0,0,.7,1,5.2088,5.2088,0,0,1,3,3.5.9934.9934,0,0,0,1,.7.9934.9934,0,0,0,1-.7,5.488,5.488,0,0,1,3-3.5,1.0875,1.0875,0,0,0,.7-1,1.0039,1.0039,0,0,0-.6-1Z\" transform=\"translate(1.5879 -0.5196)\" style=\"fill-rule:evenodd\"></path></g></g></g></g><rect y=\"0.4573\" width=\"63\" height=\"63\" style=\"fill:none\"></rect></svg>				\n				<h3>\n						Serving &amp; Cleaning					\n				</h3>\n									<p>\n						Lorem ipsum dolor sloit amet cons ctet adipiscing elit seed dlao eiusmr ncidunt labore et dolore magna. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"313\" height=\"360\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1.jpg 313w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic1-261x300.jpg 261w\" sizes=\"(max-width: 313px) 100vw, 313px\" />															\n															<img width=\"376\" height=\"330\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2.jpg 376w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/call-to-action-pic2-300x263.jpg 300w\" sizes=\"(max-width: 376px) 100vw, 376px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 13:54:12','2023-04-04 13:54:12','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=397',0,'revision','',0),(398,1,'2023-04-04 13:54:13','2023-04-04 13:54:13','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 13:54:13','2023-04-04 13:54:13','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=398',0,'revision','',0),(399,1,'2023-04-04 20:59:29','2023-04-04 20:59:29','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 20:59:29','2023-04-04 20:59:29','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=399',0,'revision','',0),(400,1,'2023-04-04 20:59:30','2023-04-04 20:59:30','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ What The Hell. All rights reserved</p>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a5b66522-2d0b-4d2b-9ca0-25f662c860cf\" data-name=\"Layer 1\" viewBox=\"0 0 26 26\"><g id=\"b72f5698-1c43-4a08-8b57-8ac749a07216\" data-name=\"Page-1\"><g id=\"f731df14-8d9a-4002-8f9a-a848309208fa\" data-name=\"Homepage\"><g id=\"bdfa7f62-b961-47b8-873b-1fb70dc137d1\" data-name=\"Sticky-Social-Icons\"><g id=\"f7176559-406d-4faa-b9a3-f0818c0693ca\" data-name=\"Group-5\"><path id=\"e8aaf532-0893-42c1-aea8-a21edf8137c2\" data-name=\"Fill-1\" d=\"M23.1073,4.3306A1.4446,1.4446,0,1,0,21.663,5.7791a1.45,1.45,0,0,0,1.4443-1.4485ZM13.01,5.7807a7.2151,7.2151,0,1,0,7.208,7.2146A7.2075,7.2075,0,0,0,13.01,5.7807ZM25.9918,13.12c0,1.9159.022,3.8322-.006,5.7476a7.2237,7.2237,0,0,1-5.399,6.8873,6.8057,6.8057,0,0,1-1.7214.2295c-3.9072.0017-7.8149.0427-11.7212-.0132a6.97,6.97,0,0,1-6.27-3.7959,6.7,6.7,0,0,1-.8578-3.3476c-.0046-3.8968-.04-7.794.0115-11.69A6.97,6.97,0,0,1,3.7357.9106a6.867,6.867,0,0,1,3.53-.907c3.8819.001,7.764-.0125,11.6456.0071a6.8893,6.8893,0,0,1,4.5545,1.7279A7.03,7.03,0,0,1,25.8718,5.93a7.7869,7.7869,0,0,1,.1155,1.3339c.012,1.9519.0052,3.904.0052,5.8559Z\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path><path id=\"ae30d5b5-b0cd-4931-87e3-deb52029baa9\" data-name=\"Fill-3\" d=\"M12.9971,8.3571a4.6429,4.6429,0,1,1-4.64,4.6445,4.6422,4.6422,0,0,1,4.64-4.6445\" transform=\"translate(0 0)\" style=\"fill-rule:evenodd\"></path></g></g></g></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 20:59:30','2023-04-04 20:59:30','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=400',0,'revision','',0),(401,1,'2023-04-04 20:59:31','2023-04-04 20:59:31','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 20:59:31','2023-04-04 20:59:31','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=401',0,'revision','',0),(402,1,'2023-04-04 21:03:45','2023-04-04 21:03:45','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:03:45','2023-04-04 21:03:45','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=402',0,'revision','',0),(403,1,'2023-04-04 21:03:46','2023-04-04 21:03:46','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						Book a demo\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:03:46','2023-04-04 21:03:46','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=403',0,'revision','',0),(404,1,'2023-04-04 21:03:47','2023-04-04 21:03:47','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:03:47','2023-04-04 21:03:47','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=404',0,'revision','',0),(406,1,'2023-04-04 21:11:59','2023-04-04 21:11:59','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:11:59','2023-04-04 21:11:59','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=406',0,'revision','',0),(407,1,'2023-04-04 21:11:59','2023-04-04 21:11:59','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:11:59','2023-04-04 21:11:59','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=407',0,'revision','',0),(408,1,'2023-04-04 21:12:01','2023-04-04 21:12:01','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:12:01','2023-04-04 21:12:01','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=408',0,'revision','',0),(409,1,'2023-04-04 21:15:17','2023-04-04 21:15:17','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:15:17','2023-04-04 21:15:17','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=409',0,'revision','',0),(410,1,'2023-04-04 21:15:18','2023-04-04 21:15:18','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:15:18','2023-04-04 21:15:18','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=410',0,'revision','',0),(411,1,'2023-04-04 21:15:19','2023-04-04 21:15:19','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:15:19','2023-04-04 21:15:19','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=411',0,'revision','',0),(413,1,'2023-04-04 21:21:11','2023-04-04 21:21:11','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:21:11','2023-04-04 21:21:11','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=413',0,'revision','',0),(414,1,'2023-04-04 21:21:12','2023-04-04 21:21:12','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:21:12','2023-04-04 21:21:12','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=414',0,'revision','',0),(415,1,'2023-04-04 21:21:13','2023-04-04 21:21:13','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-04 21:21:13','2023-04-04 21:21:13','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=415',0,'revision','',0),(416,1,'2023-04-05 07:38:28','2023-04-05 07:38:28','','WTH 10','','inherit','open','closed','','wth-10','','','2023-04-05 07:38:28','2023-04-05 07:38:28','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp',0,'attachment','image/webp',0),(417,1,'2023-04-05 07:38:28','2023-04-05 07:38:28','','WTH 9','','inherit','open','closed','','wth-9','','','2023-04-05 07:38:28','2023-04-05 07:38:28','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp',0,'attachment','image/webp',0),(418,1,'2023-04-05 07:38:29','2023-04-05 07:38:29','','WTH 8','','inherit','open','closed','','wth-8','','','2023-04-05 07:38:29','2023-04-05 07:38:29','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp',0,'attachment','image/webp',0),(419,1,'2023-04-05 07:40:05','2023-04-05 07:40:05','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:40:05','2023-04-05 07:40:05','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=419',0,'revision','',0),(420,1,'2023-04-05 07:40:06','2023-04-05 07:40:06','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:40:06','2023-04-05 07:40:06','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=420',0,'revision','',0),(421,1,'2023-04-05 07:40:07','2023-04-05 07:40:07','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:40:07','2023-04-05 07:40:07','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=421',0,'revision','',0),(422,1,'2023-04-05 07:40:17','2023-04-05 07:40:17','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:40:17','2023-04-05 07:40:17','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=422',0,'revision','',0),(423,1,'2023-04-05 07:40:18','2023-04-05 07:40:18','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:40:18','2023-04-05 07:40:18','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=423',0,'revision','',0),(424,1,'2023-04-05 07:40:19','2023-04-05 07:40:19','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:40:19','2023-04-05 07:40:19','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=424',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (425,1,'2023-04-05 07:41:44','2023-04-05 07:41:44','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:41:44','2023-04-05 07:41:44','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=425',0,'revision','',0),(426,1,'2023-04-05 07:41:45','2023-04-05 07:41:45','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:41:45','2023-04-05 07:41:45','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=426',0,'revision','',0),(427,1,'2023-04-05 07:41:46','2023-04-05 07:41:46','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:41:46','2023-04-05 07:41:46','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=427',0,'revision','',0),(428,1,'2023-04-05 07:42:36','2023-04-05 07:42:36','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:42:36','2023-04-05 07:42:36','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=428',0,'revision','',0),(429,1,'2023-04-05 07:42:37','2023-04-05 07:42:37','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:42:37','2023-04-05 07:42:37','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=429',0,'revision','',0),(430,1,'2023-04-05 07:42:38','2023-04-05 07:42:38','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 07:42:38','2023-04-05 07:42:38','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=430',0,'revision','',0),(431,1,'2023-04-05 08:35:21','2023-04-05 08:35:21','','WTH 13','','inherit','open','closed','','wth-13','','','2023-04-05 08:35:21','2023-04-05 08:35:21','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp',0,'attachment','image/webp',0),(432,1,'2023-04-05 08:35:22','2023-04-05 08:35:22','','WTH 12','','inherit','open','closed','','wth-12','','','2023-04-05 08:35:22','2023-04-05 08:35:22','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp',0,'attachment','image/webp',0),(433,1,'2023-04-05 08:35:22','2023-04-05 08:35:22','','WTH 11','','inherit','open','closed','','wth-11','','','2023-04-05 08:35:22','2023-04-05 08:35:22','',338,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp',0,'attachment','image/webp',0),(434,1,'2023-04-05 08:35:58','2023-04-05 08:35:58','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 08:35:58','2023-04-05 08:35:58','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=434',0,'revision','',0),(435,1,'2023-04-05 08:35:59','2023-04-05 08:35:59','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"400\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-300x150.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x400-1-768x384.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 08:35:59','2023-04-05 08:35:59','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=435',0,'revision','',0),(436,1,'2023-04-05 08:36:00','2023-04-05 08:36:00','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 08:36:00','2023-04-05 08:36:00','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=436',0,'revision','',0),(437,1,'2023-04-05 08:38:46','2023-04-05 08:38:46','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 08:38:46','2023-04-05 08:38:46','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=437',0,'revision','',0),(438,1,'2023-04-05 08:38:47','2023-04-05 08:38:47','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 08:38:47','2023-04-05 08:38:47','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=438',0,'revision','',0),(439,1,'2023-04-05 08:38:48','2023-04-05 08:38:48','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 08:38:48','2023-04-05 08:38:48','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=439',0,'revision','',0),(440,1,'2023-04-05 08:39:18','2023-04-05 08:39:18','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 08:39:18','2023-04-05 08:39:18','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=440',0,'revision','',0),(441,1,'2023-04-05 08:39:19','2023-04-05 08:39:19','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 08:39:19','2023-04-05 08:39:19','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=441',0,'revision','',0),(442,1,'2023-04-05 08:39:20','2023-04-05 08:39:20','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-05 08:39:20','2023-04-05 08:39:20','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=442',0,'revision','',0),(444,1,'2023-04-06 11:39:12','2023-04-06 11:39:12','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-06 11:39:12','2023-04-06 11:39:12','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=444',0,'revision','',0),(445,1,'2023-04-06 11:39:13','2023-04-06 11:39:13','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-06 11:39:13','2023-04-06 11:39:13','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=445',0,'revision','',0),(446,1,'2023-04-06 11:39:14','2023-04-06 11:39:14','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Elementor Landing Page #338','','inherit','closed','closed','','338-revision-v1','','','2023-04-06 11:39:14','2023-04-06 11:39:14','',338,'https://whatthehell-new.in8.cdn-alpha.com/?p=446',0,'revision','',0),(447,1,'2023-04-06 11:42:42','0000-00-00 00:00:00','','Elementor Landing Page #447','','draft','open','open','','','','','2023-04-06 11:42:42','2023-04-06 11:42:42','',0,'https://whatthehell-new.in8.cdn-alpha.com/?post_type=e-landing-page&#038;p=447',0,'e-landing-page','',0),(448,1,'2023-04-06 11:42:41','2023-04-06 11:42:41','','Elementor Landing Page #447','','inherit','closed','closed','','447-revision-v1','','','2023-04-06 11:42:41','2023-04-06 11:42:41','',447,'https://whatthehell-new.in8.cdn-alpha.com/?p=448',0,'revision','',0),(449,1,'2023-04-06 11:42:41','2023-04-06 11:42:41','','Elementor Landing Page #447','','inherit','closed','closed','','447-revision-v1','','','2023-04-06 11:42:41','2023-04-06 11:42:41','',447,'https://whatthehell-new.in8.cdn-alpha.com/?p=449',0,'revision','',0),(450,1,'2023-04-06 11:42:42','2023-04-06 11:42:42','','Elementor Landing Page #447','','inherit','closed','closed','','447-revision-v1','','','2023-04-06 11:42:42','2023-04-06 11:42:42','',447,'https://whatthehell-new.in8.cdn-alpha.com/?p=450',0,'revision','',0),(451,1,'2023-04-06 11:43:35','2023-04-06 11:43:35','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','WTH Landing Page','','publish','closed','closed','','wth-landing-page','','','2023-04-06 11:43:37','2023-04-06 11:43:37','',0,'https://whatthehell-new.in8.cdn-alpha.com/?elementor_library=wth-landing-page',0,'elementor_library','',0),(452,1,'2023-04-06 11:43:36','2023-04-06 11:43:36','','WTH Landing Page','','inherit','closed','closed','','451-revision-v1','','','2023-04-06 11:43:36','2023-04-06 11:43:36','',451,'https://whatthehell-new.in8.cdn-alpha.com/?p=452',0,'revision','',0),(453,1,'2023-04-06 11:43:37','2023-04-06 11:43:37','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','WTH Landing Page','','inherit','closed','closed','','451-revision-v1','','','2023-04-06 11:43:37','2023-04-06 11:43:37','',451,'https://whatthehell-new.in8.cdn-alpha.com/?p=453',0,'revision','',0),(454,1,'2023-04-06 11:58:59','2023-04-06 11:58:59','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Landing Page','','publish','closed','closed','','landing-page','','','2023-04-06 12:03:25','2023-04-06 12:03:25','',0,'https://whatthehell-new.in8.cdn-alpha.com/?page_id=454',0,'page','',0),(455,1,'2023-04-06 11:58:59','2023-04-06 11:58:59','','Landing Page','','inherit','closed','closed','','454-revision-v1','','','2023-04-06 11:58:59','2023-04-06 11:58:59','',454,'https://whatthehell-new.in8.cdn-alpha.com/?p=455',0,'revision','',0),(457,1,'2023-04-06 12:03:22','2023-04-06 12:03:22','','Landing Page','','inherit','closed','closed','','454-revision-v1','','','2023-04-06 12:03:22','2023-04-06 12:03:22','',454,'https://whatthehell-new.in8.cdn-alpha.com/?p=457',0,'revision','',0),(458,1,'2023-04-06 12:03:23','2023-04-06 12:03:23','','Landing Page','','inherit','closed','closed','','454-revision-v1','','','2023-04-06 12:03:23','2023-04-06 12:03:23','',454,'https://whatthehell-new.in8.cdn-alpha.com/?p=458',0,'revision','',0),(459,1,'2023-04-06 12:03:25','2023-04-06 12:03:25','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"https://wa.me/+91%209911990010?text=Hi%20I%20am%20interested%20in%20your%20services,%20can%20we%20connect.%20\" role=\"button\">\n						991-199-0010\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Digitally Advertise next with </h4>		\n			<h1>Skilled professionals, and experienced Marketers.</h1>		\n		<p>Fill out the form below and our experts will be in touch within 24 hours for a quick discussion.</p>		\n			<h2>Let us do the thinking for you</h2>		\n		<p>Treat yourself to a personalized experience. Just relax and enjoy while we, prepare, cook, and serve, the best strategy, and take care of everything you need.</p>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<link rel=\"stylesheet\" href=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Influencer marketing					\n				</h3>\n									<p>\n						Influencer marketing allows brands to reach a wider audience through the influencer\'s followers, also allows brands to tap into the influencer\'s credibility and reputation to promote their products or services.					</p>\n				<h3>\n						Testimonial Marketing					\n				</h3>\n									<p>\n						Testimonials can be in the form of written statements, videos, social media posts, or any other medium where satisfied customers share their positive experiences.					</p>\n				<h3>\n						Experiential Marketing					\n				</h3>\n									<p>\n						Creating memorable experiences for customers through interactive and immersive activities, and build brand loyalty and increase sales.					</p>\n				<h3>\n						Moment Marketing					\n				</h3>\n									<p>\n						Moment marketing is a marketing strategy that involves creating timely and relevant marketing messages in response to a specific event or trend. 					</p>\n			<h4>Explore</h4>		\n			<h2>The Possibilities </h2>		\n		<p>Are you looking to take your brand to the next level with digital and advertising solutions? Our agency offers a wide range of services that can help you reach your target audience and achieve your marketing goals. From social media campaigns to website design and development, we have the expertise and creativity to help you succeed. Book a demo with us today and let us show you how we can elevate your brand to new heights.</p>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-8.webp\" alt=\"WTH 8\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-10.webp\" alt=\"WTH 10\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-9.webp\" alt=\"WTH 9\" /></figure>			\n												Previous\n												Next\n															<img width=\"800\" height=\"800\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1.webp 800w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-300x300.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-150x150.webp 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/800x800-Fl-copy-2-1-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n								<figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-11.webp\" alt=\"WTH 11\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-12.webp\" alt=\"WTH 12\" /></figure><figure><img src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/WTH-13.webp\" alt=\"WTH 13\" /></figure>			\n												Previous\n												Next\n			<h2>What Happy Faces Says ?</h2>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n			<style>/*! elementor-pro - v3.11.6 - 14-03-2023 */\n@charset \"UTF-8\";.entry-content blockquote.elementor-blockquote:not(.alignright):not(.alignleft),.entry-summary blockquote.elementor-blockquote{margin-right:0;margin-left:0}.elementor-widget-blockquote blockquote{margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border:0;font-style:normal;color:#55595c}.elementor-widget-blockquote blockquote .e-q-footer:after,.elementor-widget-blockquote blockquote .e-q-footer:before,.elementor-widget-blockquote blockquote:after,.elementor-widget-blockquote blockquote:before,.elementor-widget-blockquote blockquote cite:after,.elementor-widget-blockquote blockquote cite:before{content:none}.elementor-blockquote{transition:.3s}.elementor-blockquote__author,.elementor-blockquote__content{margin-bottom:0;font-style:normal}.elementor-blockquote__author{font-weight:700}.elementor-blockquote .e-q-footer{margin-top:12px;display:flex;justify-content:space-between}.elementor-blockquote__tweet-button{display:flex;transition:.3s;color:#1da1f2;align-self:flex-end;line-height:1;position:relative;width:-moz-max-content;width:max-content}.elementor-blockquote__tweet-button:hover{color:#0967a0}.elementor-blockquote__tweet-button span{font-weight:600}.elementor-blockquote__tweet-button i,.elementor-blockquote__tweet-button span{vertical-align:middle}.elementor-blockquote__tweet-button i+span,.elementor-blockquote__tweet-button svg+span{margin-left:.5em}.elementor-blockquote__tweet-button svg{fill:#1da1f2;height:1em;width:1em}.elementor-blockquote__tweet-label{white-space:pre-wrap}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button{padding:.7em 1.2em;border-radius:100em;background-color:#1da1f2;color:#fff;font-size:15px}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover{background-color:#0967a0;color:#fff}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:hover:before,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button svg,.elementor-blockquote--button-skin-classic .elementor-blockquote__tweet-button svg{fill:#fff;height:1em;width:1em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button{padding:0;width:2em;height:2em}.elementor-blockquote--button-skin-bubble.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i,.elementor-blockquote--button-skin-classic.elementor-blockquote--button-view-icon .elementor-blockquote__tweet-button i{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.elementor-blockquote--button-skin-bubble .elementor-blockquote__tweet-button:before{content:\"\";border:.5em solid transparent;border-right-color:#1da1f2;position:absolute;left:-.8em;top:50%;transform:translateY(-50%) scaleY(.65);transition:.3s}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:before{right:auto;left:-.8em;border-right-color:#1da1f2;border-left-color:transparent}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-left .elementor-blockquote__tweet-button:hover:before{border-right-color:#0967a0}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:before{left:auto;right:-.8em;border-right-color:transparent;border-left-color:#1da1f2}.elementor-blockquote--button-skin-bubble.elementor-blockquote--align-right .elementor-blockquote__tweet-button:hover:before{border-left-color:#0967a0}.elementor-blockquote--skin-boxed .elementor-blockquote{background-color:#e6e9ec;padding:30px}.elementor-blockquote--skin-border .elementor-blockquote{border-color:#e6e9ec;border-left:7px #e6e9ec;border-style:solid;padding-left:20px}.elementor-blockquote--skin-quotation .elementor-blockquote:before{content:\"“\";font-size:100px;color:#e6e9ec;font-family:Times New Roman,Times,serif;font-weight:900;line-height:1;display:block;height:.6em}.elementor-blockquote--skin-quotation .elementor-blockquote__content{margin-top:15px}.elementor-blockquote--align-left .elementor-blockquote__content{text-align:left}.elementor-blockquote--align-left .elementor-blockquote .e-q-footer{flex-direction:row}.elementor-blockquote--align-right .elementor-blockquote__content{text-align:right}.elementor-blockquote--align-right .elementor-blockquote .e-q-footer{flex-direction:row-reverse}.elementor-blockquote--align-center .elementor-blockquote{text-align:center}.elementor-blockquote--align-center .elementor-blockquote .e-q-footer,.elementor-blockquote--align-center .elementor-blockquote__author{display:block}.elementor-blockquote--align-center .elementor-blockquote__tweet-button{margin-right:auto;margin-left:auto}</style>		<blockquote>\n			<p>\n				“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”			</p>\n											<cite>P Sarvanan</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“I always feel excited with the young and energetic team of WTH, I love the innovative creative ideas they bring to every project, I share with them..”\n			</p>\n											<cite>Amit Rathod</cite>\n					</blockquote>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a4fc3065-4b9a-4644-acc9-5ad252a0ea6c\" data-name=\"Layer 1\" width=\"34.9998\" height=\"26\" viewBox=\"0 0 34.9998 26\"><path d=\"M8.5254,1.5C4.24,1.5.8877,4.85.5532,9.4653a20.9669,20.9669,0,0,0,6.6656,16.78,1.0218,1.0218,0,0,0,1.3657-.0137c.2978-.2714.5029-.4814.9814-.9736.3379-.3457.8164-.8369,1.5811-1.6094a1.0334,1.0334,0,0,0,.12-1.3125,8.95,8.95,0,0,1-1.8252-4.8086A8.0441,8.0441,0,0,0,8.5254,1.5ZM8.93,16.5684l-.43.0244-.04.4287c-.0722.789-.0244,2.9414,1.9771,5.9219-.7686.7763-1.249,1.27-1.6318,1.6621a10.3184,10.3184,0,0,1-.9273.8877A19.928,19.928,0,0,1,1.55,9.5376L1.0518,9.501l.4985.0361C1.8457,5.46,4.7793,2.5,8.5254,2.5A7.0423,7.0423,0,0,1,8.93,16.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path><path d=\"M35.5,8.54A8.0161,8.0161,0,0,0,27.5254.5C23.24.5,19.8867,3.85,19.5527,8.4653a20.9688,20.9688,0,0,0,6.669,16.7837,1.0245,1.0245,0,0,0,1.3633-.0176c.2861-.2617.4863-.4658.89-.8789l.1553-.16c.334-.3418.8-.82,1.5156-1.544a1.0328,1.0328,0,0,0,.1211-1.3125,8.9513,8.9513,0,0,1-1.8242-4.8086A8.0222,8.0222,0,0,0,35.5,8.54Zm-7.57,7.0288-.43.0244-.0391.43c-.0722.79-.0234,2.9453,1.9756,5.9209-.7207.7285-1.1875,1.208-1.5224,1.5517l-.1553.1582a9.6794,9.6794,0,0,1-.8809.8408A19.9263,19.9263,0,0,1,20.5508,8.5376C20.8457,4.46,23.7793,1.5,27.5254,1.5A7.0423,7.0423,0,0,1,27.93,15.5684Z\" transform=\"translate(-0.5002 -0.5)\"></path></svg>			\n					<blockquote>\n			<p>\n				“It is always an exciting journey to work with team WTH and I am glad to share my experience that they are outstanding, in terms of understanding the brief and executing it as per our business need. Best Digital Agency”			</p>\n											<cite>Sandeep</cite>\n					</blockquote>\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Our finished product</h3>		\n			<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency.webp 700w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Digital.agency-300x243.webp 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"295\" height=\"300\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash-295x300.jpg 295w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/04/jon-tyson-QL0FAxaq2z0-unsplash.jpg 377w\" sizes=\"(max-width: 295px) 100vw, 295px\" />															\n			<h2>Book a slot today to see how our team can help you achieve your advertising goals.</h2>		\n			<a href=\"#bookform\" role=\"button\">\n						go for it\n					</a>\n															<img width=\"800\" height=\"89\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Ⓒ WhatTheHell. All rights reserved</p>','Landing Page','','inherit','closed','closed','','454-revision-v1','','','2023-04-06 12:03:25','2023-04-06 12:03:25','',454,'https://whatthehell-new.in8.cdn-alpha.com/?p=459',0,'revision','',0),(460,1,'2023-04-12 13:03:47','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-04-12 13:03:47','0000-00-00 00:00:00','',0,'https://whatthehell-new.in8.cdn-alpha.com/?p=460',0,'post','',0),(461,1,'2023-05-04 10:43:21','2023-05-04 10:43:21','','Ideacloud white logo-01','','inherit','open','closed','','ideacloud-white-logo-01','','','2023-05-04 10:43:21','2023-05-04 10:43:21','',139,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png',0,'attachment','image/png',0),(462,1,'2023-05-04 10:45:15','2023-05-04 10:45:15','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 10:45:15','2023-05-04 10:45:15','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=462',0,'revision','',0),(463,1,'2023-05-04 10:45:16','2023-05-04 10:45:16','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 10:45:16','2023-05-04 10:45:16','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=463',0,'revision','',0),(464,1,'2023-05-04 10:45:17','2023-05-04 10:45:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 10:45:17','2023-05-04 10:45:17','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=464',0,'revision','',0),(465,1,'2023-05-04 10:45:18','2023-05-04 10:45:18','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 10:45:18','2023-05-04 10:45:18','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=465',0,'revision','',0),(466,1,'2023-05-04 10:45:19','2023-05-04 10:45:19','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"941\" height=\"105\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell.webp 941w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-300x33.webp 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/WhatTheHell-768x86.webp 768w\" sizes=\"(max-width: 941px) 100vw, 941px\" />															\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 10:45:19','2023-05-04 10:45:19','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=466',0,'revision','',0),(467,1,'2023-05-04 10:45:19','2023-05-04 10:45:19','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 10:45:19','2023-05-04 10:45:19','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=467',0,'revision','',0),(471,1,'2023-05-04 10:56:29','2023-05-04 10:56:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 10:56:29','2023-05-04 10:56:29','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=471',0,'revision','',0),(472,1,'2023-05-04 10:56:29','2023-05-04 10:56:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 10:56:29','2023-05-04 10:56:29','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=472',0,'revision','',0),(473,1,'2023-05-04 10:56:30','2023-05-04 10:56:30','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 10:56:30','2023-05-04 10:56:30','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=473',0,'revision','',0),(474,1,'2023-05-04 11:09:42','2023-05-04 11:09:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:09:42','2023-05-04 11:09:42','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=474',0,'revision','',0),(475,1,'2023-05-04 11:09:42','2023-05-04 11:09:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:09:42','2023-05-04 11:09:42','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=475',0,'revision','',0),(476,1,'2023-05-04 11:09:43','2023-05-04 11:09:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:09:43','2023-05-04 11:09:43','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=476',0,'revision','',0),(477,1,'2023-05-04 11:09:44','2023-05-04 11:09:44','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:09:44','2023-05-04 11:09:44','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=477',0,'revision','',0),(478,1,'2023-05-04 11:09:45','2023-05-04 11:09:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:09:45','2023-05-04 11:09:45','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=478',0,'revision','',0),(479,1,'2023-05-04 11:09:46','2023-05-04 11:09:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:09:46','2023-05-04 11:09:46','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=479',0,'revision','',0),(480,1,'2023-05-04 11:11:14','2023-05-04 11:11:14','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:11:14','2023-05-04 11:11:14','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=480',0,'revision','',0),(481,1,'2023-05-04 11:11:14','2023-05-04 11:11:14','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:11:14','2023-05-04 11:11:14','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=481',0,'revision','',0),(482,1,'2023-05-04 11:11:15','2023-05-04 11:11:15','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:11:15','2023-05-04 11:11:15','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=482',0,'revision','',0),(483,1,'2023-05-04 11:13:03','2023-05-04 11:13:03','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:13:03','2023-05-04 11:13:03','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=483',0,'revision','',0),(484,1,'2023-05-04 11:13:04','2023-05-04 11:13:04','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:13:04','2023-05-04 11:13:04','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=484',0,'revision','',0),(485,1,'2023-05-04 11:13:05','2023-05-04 11:13:05','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:13:05','2023-05-04 11:13:05','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=485',0,'revision','',0),(487,1,'2023-05-04 11:34:24','2023-05-04 11:34:24','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:34:24','2023-05-04 11:34:24','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=487',0,'revision','',0),(488,1,'2023-05-04 11:34:25','2023-05-04 11:34:25','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:34:25','2023-05-04 11:34:25','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=488',0,'revision','',0),(489,1,'2023-05-04 11:34:26','2023-05-04 11:34:26','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:34:26','2023-05-04 11:34:26','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=489',0,'revision','',0),(490,1,'2023-05-04 11:35:01','2023-05-04 11:35:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:35:01','2023-05-04 11:35:01','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=490',0,'revision','',0),(491,1,'2023-05-04 11:35:01','2023-05-04 11:35:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:35:01','2023-05-04 11:35:01','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=491',0,'revision','',0),(492,1,'2023-05-04 11:35:02','2023-05-04 11:35:02','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 11:35:02','2023-05-04 11:35:02','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=492',0,'revision','',0),(493,1,'2023-05-04 11:37:25','2023-05-04 11:37:25','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:37:25','2023-05-04 11:37:25','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=493',0,'revision','',0),(494,1,'2023-05-04 11:37:26','2023-05-04 11:37:26','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>B-53/2, Naraina Vihar, New Delhi – 110028</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>9911990010</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:37:26','2023-05-04 11:37:26','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=494',0,'revision','',0),(495,1,'2023-05-04 11:37:27','2023-05-04 11:37:27','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:37:27','2023-05-04 11:37:27','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=495',0,'revision','',0),(496,1,'2023-05-04 11:40:45','2023-05-04 11:40:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:40:45','2023-05-04 11:40:45','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=496',0,'revision','',0),(497,1,'2023-05-04 11:40:46','2023-05-04 11:40:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:40:46','2023-05-04 11:40:46','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=497',0,'revision','',0),(498,1,'2023-05-04 11:40:47','2023-05-04 11:40:47','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:40:47','2023-05-04 11:40:47','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=498',0,'revision','',0),(499,1,'2023-05-04 11:43:38','2023-05-04 11:43:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:43:38','2023-05-04 11:43:38','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=499',0,'revision','',0),(500,1,'2023-05-04 11:43:39','2023-05-04 11:43:39','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n		<p>Copyright © 2023 What The Hell</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:43:39','2023-05-04 11:43:39','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=500',0,'revision','',0),(501,1,'2023-05-04 11:43:39','2023-05-04 11:43:39','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:43:39','2023-05-04 11:43:39','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=501',0,'revision','',0),(502,1,'2023-05-04 11:45:28','2023-05-04 11:45:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:45:28','2023-05-04 11:45:28','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=502',0,'revision','',0),(503,1,'2023-05-04 11:45:28','2023-05-04 11:45:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:45:28','2023-05-04 11:45:28','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=503',0,'revision','',0),(504,1,'2023-05-04 11:45:29','2023-05-04 11:45:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 11:45:29','2023-05-04 11:45:29','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=504',0,'revision','',0),(506,1,'2023-05-04 12:47:23','2023-05-04 12:47:23','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:47:23','2023-05-04 12:47:23','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=506',0,'revision','',0),(507,1,'2023-05-04 12:47:24','2023-05-04 12:47:24','<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#818a91;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.2 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.11.5 - 14-03-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:47:24','2023-05-04 12:47:24','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=507',0,'revision','',0),(508,1,'2023-05-04 12:47:25','2023-05-04 12:47:25','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:47:25','2023-05-04 12:47:25','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=508',0,'revision','',0),(509,1,'2023-05-04 12:51:04','2023-05-04 12:51:04','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 12:51:04','2023-05-04 12:51:04','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=509',0,'revision','',0),(510,1,'2023-05-04 12:51:05','2023-05-04 12:51:05','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 12:51:05','2023-05-04 12:51:05','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=510',0,'revision','',0),(511,1,'2023-05-04 12:51:06','2023-05-04 12:51:06','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 12:51:06','2023-05-04 12:51:06','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=511',0,'revision','',0),(513,1,'2023-05-04 12:53:14','2023-05-04 12:53:14','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 12:53:14','2023-05-04 12:53:14','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=513',0,'revision','',0),(514,1,'2023-05-04 12:53:15','2023-05-04 12:53:15','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 12:53:15','2023-05-04 12:53:15','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=514',0,'revision','',0),(515,1,'2023-05-04 12:53:16','2023-05-04 12:53:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 12:53:16','2023-05-04 12:53:16','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=515',0,'revision','',0),(516,1,'2023-05-04 12:54:13','2023-05-04 12:54:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 12:54:13','2023-05-04 12:54:13','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=516',0,'revision','',0),(517,1,'2023-05-04 12:54:14','2023-05-04 12:54:14','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 12:54:14','2023-05-04 12:54:14','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=517',0,'revision','',0),(518,1,'2023-05-04 12:54:15','2023-05-04 12:54:15','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 12:54:15','2023-05-04 12:54:15','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=518',0,'revision','',0),(519,1,'2023-05-04 12:56:33','2023-05-04 12:56:33','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:56:33','2023-05-04 12:56:33','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=519',0,'revision','',0),(520,1,'2023-05-04 12:56:34','2023-05-04 12:56:34','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:56:34','2023-05-04 12:56:34','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=520',0,'revision','',0),(521,1,'2023-05-04 12:56:35','2023-05-04 12:56:35','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:56:35','2023-05-04 12:56:35','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=521',0,'revision','',0),(522,1,'2023-05-04 12:57:42','2023-05-04 12:57:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:57:42','2023-05-04 12:57:42','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=522',0,'revision','',0),(523,1,'2023-05-04 12:57:43','2023-05-04 12:57:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:57:43','2023-05-04 12:57:43','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=523',0,'revision','',0),(524,1,'2023-05-04 12:57:44','2023-05-04 12:57:44','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:57:44','2023-05-04 12:57:44','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=524',0,'revision','',0),(525,1,'2023-05-04 12:58:18','2023-05-04 12:58:18','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:58:18','2023-05-04 12:58:18','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=525',0,'revision','',0),(526,1,'2023-05-04 12:58:19','2023-05-04 12:58:19','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:58:19','2023-05-04 12:58:19','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=526',0,'revision','',0),(527,1,'2023-05-04 12:58:20','2023-05-04 12:58:20','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 12:58:20','2023-05-04 12:58:20','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=527',0,'revision','',0),(528,1,'2023-05-04 13:09:04','2023-05-04 13:09:04','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 13:09:04','2023-05-04 13:09:04','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=528',0,'revision','',0),(529,1,'2023-05-04 13:09:05','2023-05-04 13:09:05','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 13:09:05','2023-05-04 13:09:05','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=529',0,'revision','',0),(530,1,'2023-05-04 13:09:06','2023-05-04 13:09:06','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-revision-v1','','','2023-05-04 13:09:06','2023-05-04 13:09:06','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=530',0,'revision','',0),(531,1,'2023-05-04 13:11:57','2023-05-04 13:11:57','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 13:11:57','2023-05-04 13:11:57','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=531',0,'revision','',0),(532,1,'2023-05-04 13:11:58','2023-05-04 13:11:58','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 13:11:58','2023-05-04 13:11:58','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=532',0,'revision','',0),(533,1,'2023-05-04 13:11:59','2023-05-04 13:11:59','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 13:11:59','2023-05-04 13:11:59','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=533',0,'revision','',0),(535,1,'2023-05-04 13:23:42','2023-05-04 13:23:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:23:42','2023-05-04 13:23:42','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=535',0,'revision','',0),(536,1,'2023-05-04 13:23:42','2023-05-04 13:23:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:23:42','2023-05-04 13:23:42','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=536',0,'revision','',0),(537,1,'2023-05-04 13:23:43','2023-05-04 13:23:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:23:43','2023-05-04 13:23:43','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=537',0,'revision','',0),(538,1,'2023-05-04 13:28:16','2023-05-04 13:28:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:28:16','2023-05-04 13:28:16','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=538',0,'revision','',0),(539,1,'2023-05-04 13:28:17','2023-05-04 13:28:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:28:17','2023-05-04 13:28:17','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=539',0,'revision','',0),(540,1,'2023-05-04 13:28:18','2023-05-04 13:28:18','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:28:18','2023-05-04 13:28:18','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=540',0,'revision','',0),(541,1,'2023-05-04 13:28:42','2023-05-04 13:28:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:28:42','2023-05-04 13:28:42','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=541',0,'revision','',0),(542,1,'2023-05-04 13:28:43','2023-05-04 13:28:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:28:43','2023-05-04 13:28:43','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=542',0,'revision','',0),(543,1,'2023-05-04 13:28:43','2023-05-04 13:28:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:28:43','2023-05-04 13:28:43','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=543',0,'revision','',0),(544,1,'2023-05-04 13:36:02','2023-05-04 13:36:02','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:36:02','2023-05-04 13:36:02','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=544',0,'revision','',0),(545,1,'2023-05-04 13:36:03','2023-05-04 13:36:03','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:36:03','2023-05-04 13:36:03','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=545',0,'revision','',0),(546,1,'2023-05-04 13:36:03','2023-05-04 13:36:03','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:36:03','2023-05-04 13:36:03','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=546',0,'revision','',0),(547,1,'2023-05-04 13:36:36','2023-05-04 13:36:36','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:36:36','2023-05-04 13:36:36','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=547',0,'revision','',0),(548,1,'2023-05-04 13:36:37','2023-05-04 13:36:37','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:36:37','2023-05-04 13:36:37','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=548',0,'revision','',0),(549,1,'2023-05-04 13:36:38','2023-05-04 13:36:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:36:38','2023-05-04 13:36:38','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=549',0,'revision','',0),(551,1,'2023-05-04 13:49:12','2023-05-04 13:49:12','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:49:12','2023-05-04 13:49:12','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=551',0,'revision','',0),(552,1,'2023-05-04 13:49:13','2023-05-04 13:49:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:49:13','2023-05-04 13:49:13','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=552',0,'revision','',0),(553,1,'2023-05-04 13:49:14','2023-05-04 13:49:14','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 13:49:14','2023-05-04 13:49:14','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=553',0,'revision','',0),(554,1,'2023-05-04 13:56:19','2023-05-04 13:56:19','','Untitled design (18)','','inherit','open','closed','','untitled-design-18','','','2023-05-04 13:56:19','2023-05-04 13:56:19','',139,'https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Untitled-design-18.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (556,1,'2023-05-04 18:27:23','2023-05-04 18:27:23','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:27:23','2023-05-04 18:27:23','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=556',0,'revision','',0),(557,1,'2023-05-04 18:27:24','2023-05-04 18:27:24','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:27:24','2023-05-04 18:27:24','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=557',0,'revision','',0),(558,1,'2023-05-04 18:27:24','2023-05-04 18:27:24','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:27:24','2023-05-04 18:27:24','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=558',0,'revision','',0),(559,1,'2023-05-04 18:31:38','2023-05-04 18:31:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WE ARE</h1>		\n			<h1>DIGITAL  AGENCY</h1>		\n		<p>We help businesses, establish and improve their online presence.</p>		\n			<a href=\"#\" role=\"button\">\n						Get in touch\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n					Work				\n			<h2>\n						Journey Towards Success\n					</h2><h2>SELECTED</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Digital                </h3>\n                        		  <p>Digital has emerged as one of the efficient media, there is no spill over with the help of professional targeting &amp; even individual targeting is possible.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Creative                </h3>\n                        		  <p>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Web Design                </h3>\n                        		  <p>Brand\'s/Product\'s/Service\'s presence begins with a well-defined and clearly communicated website.  So get ready for a more daring start.</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Media                </h3>\n                        		  <p>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</p>\n                </a>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Business Strategy                </h3>\n                        		  <p>\nGaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Design/Video/Photo                </h3>\n                        		  <p>Design is not Art, Art is about the Artist, &amp; Design is about the user. Blending &amp; Balancing Art, Design, Copy &amp; Business Objective is what we do.</p>\n			<h2>01</h2>		\n			<h2>PRODUCT ENGINEERING</h2>		\n			<a href=\"#\" role=\"button\">\n						PRODUCT DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PRODUCT CONSULTATION\n					</a>\n			<a href=\"#\" role=\"button\">\n						ARCHITECTURE DESIGN\n					</a>\n			<h2>02</h2>		\n			<h2>UI AND UX DESIGN</h2>		\n			<a href=\"#\" role=\"button\">\n						WEBSITE DESIGN\n					</a>\n			<a href=\"#\" role=\"button\">\n						APP DEVELOPMENT\n					</a>\n			<a href=\"#\" role=\"button\">\n						PROTOTYPING\n					</a>\n			<h2>03</h2>		\n			<h2>PRODUCT BRANDING</h2>		\n			<a href=\"#\" role=\"button\">\n						MARKETING STRATEGY\n					</a>\n			<a href=\"#\" role=\"button\">\n						BRAND ANALYSIS\n					</a>\n			<a href=\"#\" role=\"button\">\n						SUPPLY CHAIN\n					</a>\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE BRING YOUR IDEAS TO LIFE</h2>		\n			<h3>We love creating</h3>		\n		<p>Turn your ideas into tangible products or solutions. We commit to working with you to comprehend your requirements, objectives, and vision and to collaborate with you to realise your ideas by fusing inventiveness, technological know-how, and creativity to produce something that is consistent with your vision.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>BRAND BUILDING ROAD MAP</h2>		\n			<h3>Speed up to win the race</h3>		\n			<!-- ========= Timeline Widget Addon For Elementor 1.4.3 ========= -->\n                Strategy<p>Environmental Scanning of Brand, Understanding of Product/Service, Current Status of Brand in Market, Forecasting of necessary steps to increase the Brand Equity/Sales.</p>\n                Creation of Brand Identity<p>Finalizing a brand manual as per the brand, Website creation/ optimization, and social channels creation/ optimization.</p>\n                Ideation and Execution of Content<p>Social campaigns, blogs, product shoots, Ad films, etc. used for brand communication.</p>\n                Graphic Designing<p>POS materials - Infographics, Brochures, Packaging, etc.</p>\n                Advertisement and Promotion<p>Search Engine Optimization, PPC campaigns, Programmatic Campaigns Native ad campaigns, and Social Media Paid Campaigns.</p>\n                New Age Media <p>Influencer marketing, Testimonial Marketing, Experiential Marketing, and Moment Marketing.</p>\n                Complete Performance Marketing<p>Environmental Scanning, Lead generation campaigns, E-commerce performance campaigns, and sales funnel building for optimized conversions.</p>\n                Services <p>Website Maintenance, Social Media optimization, Search Engine optimization, and Regular flow of content like blogs and posts.</p>\n    <style type=\"text/css\"></style>		\n			<h2>GENERATING NEW IDEAS,\nSOLVING REAL PROBLEMS</h2>		\n			<h3>our finished product</h3>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n			<h2>SATISFIED CLIENTS</h2>		\n				0\n				+\n			<h2>COMPLETED PROJECTS</h2>		\n				0\n			<h2>Ongoing projects</h2>		\n			<h2>WHY YOU SHOULD CHOOSE US</h2>		\n			<h3>this is the reason</h3>		\n			<h2>01</h2>		\n			<h3>INDUSTRY EXPERTISE</h3>		\n		<p>We are recognized as a subject matter authority with in-depth knowledge of market trends, best practices, and cutting-edge technologies that we employ for brand uplift.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>02</h2>		\n			<h3>DEEP IT EXPERTISE</h3>		\n		<p>We assist you with our extensive knowledge of numerous technologies, tools, and systems, as well as our capacity to create, develop, and implement sophisticated solutions.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>03</h2>		\n			<h3>DEDICATED SOLUTION</h3>		\n		<p>Work closely with the clients, to tailor a dedicated solution to meet the unique needs and requirements of an individual or organization, as the result is a more effective and efficient.</p>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR PHILOSOPHY</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>OUR VISION</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sapien eros, eleifend eu varius ut, scelerisque ac mauris. Proin molestie lacinia odio vitae ultrices. Curabitur ultrices semper massa, nec blandit est hendrerit a.</p>		\n			<h2>READ OUR BLOG</h2>		\n			<h3>We also do writing</h3>		\n			<h2>OUR WORKS</h2>		\n			<h3>Design skills</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>\n			<h2>OUR CONTACTS</h2>		\n			<h3>Let\'s work</h3>		\n			<a href=\"#\" role=\"button\">\n					</a>','Home','','inherit','closed','closed','','144-autosave-v1','','','2023-05-04 18:38:28','2023-05-04 18:38:28','',144,'https://whatthehell-new.in8.cdn-alpha.com/?p=559',0,'revision','',0),(560,1,'2023-05-04 18:33:05','2023-05-04 18:33:05','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:33:05','2023-05-04 18:33:05','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=560',0,'revision','',0),(561,1,'2023-05-04 18:33:06','2023-05-04 18:33:06','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:33:06','2023-05-04 18:33:06','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=561',0,'revision','',0),(562,1,'2023-05-04 18:33:06','2023-05-04 18:33:06','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:33:06','2023-05-04 18:33:06','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=562',0,'revision','',0),(563,1,'2023-05-04 18:33:48','2023-05-04 18:33:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:33:48','2023-05-04 18:33:48','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=563',0,'revision','',0),(564,1,'2023-05-04 18:33:48','2023-05-04 18:33:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:33:48','2023-05-04 18:33:48','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=564',0,'revision','',0),(565,1,'2023-05-04 18:33:49','2023-05-04 18:33:49','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:33:49','2023-05-04 18:33:49','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=565',0,'revision','',0),(566,1,'2023-05-04 18:34:11','2023-05-04 18:34:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:34:11','2023-05-04 18:34:11','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=566',0,'revision','',0),(567,1,'2023-05-04 18:34:12','2023-05-04 18:34:12','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:34:12','2023-05-04 18:34:12','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=567',0,'revision','',0),(568,1,'2023-05-04 18:34:13','2023-05-04 18:34:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:34:13','2023-05-04 18:34:13','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=568',0,'revision','',0),(569,1,'2023-05-04 18:35:21','2023-05-04 18:35:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:35:21','2023-05-04 18:35:21','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=569',0,'revision','',0),(570,1,'2023-05-04 18:35:22','2023-05-04 18:35:22','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:35:22','2023-05-04 18:35:22','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=570',0,'revision','',0),(571,1,'2023-05-04 18:35:23','2023-05-04 18:35:23','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:35:23','2023-05-04 18:35:23','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=571',0,'revision','',0),(572,1,'2023-05-04 18:35:50','2023-05-04 18:35:50','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:35:50','2023-05-04 18:35:50','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=572',0,'revision','',0),(573,1,'2023-05-04 18:35:50','2023-05-04 18:35:50','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:35:50','2023-05-04 18:35:50','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=573',0,'revision','',0),(574,1,'2023-05-04 18:35:51','2023-05-04 18:35:51','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:35:51','2023-05-04 18:35:51','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=574',0,'revision','',0),(575,1,'2023-05-04 18:36:04','2023-05-04 18:36:04','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:36:04','2023-05-04 18:36:04','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=575',0,'revision','',0),(576,1,'2023-05-04 18:36:05','2023-05-04 18:36:05','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:36:05','2023-05-04 18:36:05','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=576',0,'revision','',0),(577,1,'2023-05-04 18:36:06','2023-05-04 18:36:06','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:36:06','2023-05-04 18:36:06','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=577',0,'revision','',0),(578,1,'2023-05-04 18:41:38','2023-05-04 18:41:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:41:38','2023-05-04 18:41:38','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=578',0,'revision','',0),(579,1,'2023-05-04 18:41:39','2023-05-04 18:41:39','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:41:39','2023-05-04 18:41:39','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=579',0,'revision','',0),(580,1,'2023-05-04 18:41:40','2023-05-04 18:41:40','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:41:40','2023-05-04 18:41:40','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=580',0,'revision','',0),(581,1,'2023-05-04 18:45:28','2023-05-04 18:45:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:45:28','2023-05-04 18:45:28','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=581',0,'revision','',0),(582,1,'2023-05-04 18:45:29','2023-05-04 18:45:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:45:29','2023-05-04 18:45:29','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=582',0,'revision','',0),(583,1,'2023-05-04 18:45:30','2023-05-04 18:45:30','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-8818d43\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<a href=\"https://kit.juliha.com/runda/contact-us\" role=\"button\">\n						Contact\n					</a>','Header','','inherit','closed','closed','','8-revision-v1','','','2023-05-04 18:45:30','2023-05-04 18:45:30','',8,'https://whatthehell-new.in8.cdn-alpha.com/?p=583',0,'revision','',0),(584,1,'2023-05-04 18:51:17','2023-05-04 18:51:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 18:51:17','2023-05-04 18:51:17','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=584',0,'revision','',0),(585,1,'2023-05-04 18:51:17','2023-05-04 18:51:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 18:51:17','2023-05-04 18:51:17','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=585',0,'revision','',0),(586,1,'2023-05-04 18:51:18','2023-05-04 18:51:18','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1500\" height=\"1500\" src=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01.png 1500w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-300x300.png 300w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-1024x1024.png 1024w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-150x150.png 150w, https://whatthehell-new.in8.cdn-alpha.com/wp-content/uploads/2023/03/Ideacloud-white-logo-01-768x768.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ADDRESS</h2>		\n		<p>Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014</p>		\n			<h2>EMAIL</h2>		\n		<p>info@whatthehell.co</p>		\n			<h2>PHONE</h2>		\n		<p>93156 66436</p>		\n			<h2>USEFUL LINKS</h2>		\n				<nav data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-1897738b\"><li id=\"menu-item-180\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-175\"><a href=\"https://www.whatthehell.co/\" class = \"hfe-menu-item\">We</a>\n<ul>\n	<li id=\"menu-item-179\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/about-us/\" class = \"hfe-sub-menu-item\">About Us</a></li>\n	<li id=\"menu-item-178\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/our-team/\" class = \"hfe-sub-menu-item\">Our Team</a></li>\n	<li id=\"menu-item-177\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/services/\" class = \"hfe-sub-menu-item\">Services</a></li>\n</ul>\n</li>\n<li id=\"menu-item-176\"><a href=\"https://whatthehell-new.in8.cdn-alpha.com/blog/\" class = \"hfe-menu-item\">Blog</a></li>\n</ul></nav>              \n			<h2>OUR LOCATION</h2>		\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Shop%20no.%20227%2C%20228%20D-mall%2C%20Shakti%20Khand-2%2C%20Indirapuram%20Ghaziabad-201014&#038;t=m&#038;z=11&#038;output=embed&#038;iwloc=near\"\n					title=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n					aria-label=\"Shop no. 227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\"\n			></iframe>\n		<p>Copyright © 2023 Ideas Cloud</p>','Footer','','inherit','closed','closed','','139-revision-v1','','','2023-05-04 18:51:18','2023-05-04 18:51:18','',139,'https://whatthehell-new.in8.cdn-alpha.com/?p=586',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 (1,1,0),(13,2,0),(59,2,0),(70,3,0),(74,3,0),(79,3,0),(82,3,0),(85,3,0),(87,3,0),(90,3,0),(94,3,0),(97,3,0),(101,3,0),(105,2,0),(108,3,0),(112,2,0),(114,2,0),(116,2,0),(175,4,0),(176,4,0),(177,4,0),(178,4,0),(179,4,0),(180,4,0),(338,5,0),(363,5,0),(370,5,0),(383,5,0),(387,5,0),(395,5,0),(405,5,0),(412,5,0),(443,5,0),(447,5,0),(451,3,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=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'elementor_library_type','',0,6),(3,3,'elementor_library_type','',0,12),(4,4,'nav_menu','',0,6),(5,5,'elementor_library_type','',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 DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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=6 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,'section','section',0),(3,'page','page',0),(4,'Main Menu','main-menu',0),(5,'landing-page','landing-page',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=30 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','sitemanager'),(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:\"8e7e6821caff8b664c06ba09cd0b31acdfd30263ff43514011c1bbee85564ab0\";a:4:{s:10:\"expiration\";i:1714480989;s:2:\"ip\";s:14:\"172.69.179.195\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";s:5:\"login\";i:1714308189;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','460'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"172.69.179.0\";}'),(19,1,'hfe-popup','dismissed'),(20,1,'header-footer-elementor-rating','delayed-notice'),(21,1,'elementor_introduction','a:2:{s:7:\"exit_to\";b:1;s:27:\"ai-get-started-announcement\";b:1;}'),(22,1,'wp_user-settings','editor=tinymce&libraryContent=browse'),(23,1,'wp_user-settings-time','1679132389'),(24,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-03-17T05:37:37.614Z\";}'),(25,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\";}'),(26,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(27,1,'announcements_user_counter','1'),(28,1,'wp_elementor_connect_common_data','a:3:{s:9:\"client_id\";s:32:\"iw43lKRUO5aBEipESB2vthbElALAffBG\";s:11:\"auth_secret\";s:32:\"ztFINrfoEHGB96R47qf5rFmAbRteTuOS\";s:5:\"state\";s:12:\"ri6kvvX2UXUR\";}'),(29,1,'elementor_admin_notices','a:1:{s:20:\"design_not_appearing\";a:2:{s:9:\"is_viewed\";b:0;s:4:\"meta\";a:1:{s:7:\"version\";s:6:\"3.21.3\";}}}');
/*!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,'sitemanager','$P$BCFaH48uddnQoXar5JaIkizu7RaYx81','sitemanager','wp@dxpsites.com','https://whatthehell-new.in8.cdn-alpha.com','2023-03-15 11:28:37','',0,'sitemanager');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-06-25 20:38:05

AISLING Pharma – Affy Pharma Pvt Ltd

SYREGO

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefpodoxime 50mg/5ml <

Indications & Uses

UTIs, LRTs

SYREGO – CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefpodoxime 50mg + Potassium Clavulanate 31.25mg/ 5ml

Indications & Uses

Upper & lower respiratory infections, Uncomplicated skin infections, Urinary Tract Infections

AISIMOX – CLAV

POWDER FOR ORAL SUSPENSION
30ML (GLASS +HDPE BOTTLE)

Composition

Amoxycillin 200mg + Potassium clavulanate 28.50 mg/ 5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis, Upper Respiratory Tract Infections, Urinary Tract Infections

CEFTAR – CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefixime 50mg + Potassium clavulanate 31.25mg/5ml

Indications & Uses

Urinary Tract Inefctions, AECB, Otitis Media, Typhoid/p>

CEFTAR

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefixime 50mg/5ml

Indications & Uses

Urinary Tract Inefctions, Gastroenteritis

FADRO

ORAL SUSPENSION
15 ml

Composition

Azithromycin 200mg/5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis,

DOFLAM – DS

ORAL SUSPENSION
60 ml

Composition

Paracetamol 250mg/5ml

Indications & Uses

Fever, Pain

ACE – M

ORAL SUSPENSION
60 ml

Composition

Paracetamol 125mg + Mefenamic Acid 50mg/5ml

Indications & Uses

Pain, Fever

FLORIN – 50

ORAL SUSPENSION
30 ml

Composition

Ofloxacin 50mg/5ml

Indications & Uses

Acute exacerbations of chronic bronchitis, community acquired Pneumonia, soft skin and skin structure infections

ACE – CET – P

SYRUP
60 ml

Composition

Paracetamol 125mg + PPH 5mg + Cetirizine HCI 2mg/5ml

Indications & Uses

Fever, common cold & Flu

KWOSNIL – DSR

CAPSULES ( HARD GELATIN)
10X10 (Alu-Alu)

Composition

Pantoprazole 40mg (EC) + Domperidone 30mg (SR)

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

TAPEN-DSR

CAPSULES ( HARD GELATIN)
11X10 (Alu-Alu)

Composition

Rabeprazole 20mg (EC) + Domperidone SR

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

KWOSNIL – DSR

CAPSULES ( HARD GELATIN)
10X10 (Alu-Alu)

Composition

Pantoprazole 40mg (EC) + Domperidone 30mg (SR)

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

ZAPRA – DSR

CAPSULES ( HARD GELATIN)
11X10 (Alu-Alu)

Composition

Rabeprazole 20mg (EC) + Domperidone SR

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

KWOSNIL – 40

INJECTION
40ml

Composition

Pantoprazole Sodium 40mg + NaCL

Indications & Uses

Acid-peptic disorders in hospitalized patients, Zollinger – Ellison Syndrome, Treatment of GERD Associated with Erasive Esophagitis, GL Bleed

NATIC

SUSPENSION
170ml

Composition

Activated Dimethicone 25mg + Magnesium Hydroxide 200mg+ Aluminium Hydroxide Gel 200mg/10ml

Indications & Uses

Heartburn, Acid Indigestion

AISZYME

SYRUP
200ml

Composition

Alpha Amylase (1:2000) 50mg, Pepsin(1:3000) 10mg/5ml

Indications & Uses

Dyspepsia, Flatulence, Anorexia, Pancreatic Insufficiency

BONFOL – Z

CAPSULES (HARD GELATIN)
10X3X10

Composition

Vitamin C 75mg + Vitamin B12 5mcg + Carbonyl Iron 100mg + Folic Acid 1.5mg + Zinc Sulphate 61.8mg

Indications & Uses

Hyphocromic Anemia in Pregnancy, Chronic and / or Acute Blood Loss, Post-gynaesurgery, Iron Deficiency Anemia

AID-D3 60K

CAPSULES (SOFT GELATIN)
10X1X4

Composition

Cholecalciferol 60000 UI

Indications & Uses

Osteoporosis, Osteoarthritis, Musculoskeletal Pain, Type- 2 Diabetes, Menstrual Irregularities, Pre-eclampsia, IUGR

ROBOTONE

ORAL SUSPENSION
200 ml

Composition

Calcium Carbonate 625mg, Vitamin D3 125 IU/5ml

Indications & Uses

Osteomalacia, Osteoporosis, Fractures, Premenstrual Syndrome

HAEMLING

SYRUP (IRON TONIC)
300 ml

Composition

Iron (III) Hydroxide Polymaltose 50mg, Folic Acid 0.5mg/15ml

Indications & Uses

Pregnancy and lactation, Iron Deficiency Anaemia, Anaemia due to Excessive Haemorrhage, Anaemia Associated with Infections and Malignant Disease

CIUM

CAPSULES (SOFT GELATIN)
5X2X15

Composition

Calcitriol 0.25mcg + Calcium Carbonate 500mg + Zinc Sulphate 7.5mg

Indications & Uses

Osteoporosis, Hypoparathyroidism, Pregnancy & Lactation, Premenstrual Syndrome

MEF – DSPAS

TABLETS
20X10

Composition

Mefenamic Acid 250mg + Dicyclomine HCI 10mg

Indications & Uses

Dysmenorrhea, Irritable Bowel Syndrome, Colic and Bladder Spasm, Abdominal Pain

NAS – 2

TABLETS (BLISTERS)
20X10

Composition

Nimeulide 100mg + Paracetamo; 325mg

Indications & Uses

Minor Pain of Arthiritis, Muscular Aches, Backache, Toothache, Headache, Pre-menstrual and Menstrual Cramps

NAC – P

TABLETS
20X10

Composition

Aceclofenac 100mg + Paracetamol 325mg

Indications & Uses

Arthritis Pain, Soft Tissue Trauma Including Sprains, Musculoskeletal Pain, Pain Following Dental Extraction

TP – FORTE

TABLETS (BLISTERS)
20X10

Composition

Tramadol 37.5mg +Paracetamol 325mg

Indications & Uses

Chronic Back Pain, Osteoarthritis, Postoperative Pain

SYREGO

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefpodoxime 50mg/5ml <

Indications & Uses

UTIs, LRTs

SWIFT – HEEL

CREAM
20g

Composition

Urea 10% +Lactic Acid 10% + Propylene Glycol 10% + Liquid Paraffin 10%

Indications & Uses

Foot Cracks, Keratolytic

OTIZOB

OINTMENT
15g

Composition

Clotrimazole 1% w/w + Beclomethasone Dipropionate 0.025% w/w + Neomycin 0.5% w/w

Indications & Uses

Eczema, Psoriasis, Corticosteroid Responsive Dermatoses

DANDNIL

LOTION
100 ml

Composition

Ketoconazole 2% w/v

Indications & Uses

Pityriasis, Dandruff

DANDNIL – Z

LOTION
100 ml

Composition

Ketoconazole Shampoo 2% w/v + ZPTO 1% w/v

Indications & Uses

Pityriasis, Dandruff

DANDNIL

SOAP
75g

Composition

Ketoconazole 1% w/w

Indications & Uses

Tinea Versicolor, Prophylaxis of Pityriasis Versicolor

FLUVERA – 200

TABLETS
20X1X1

Composition

Fluconazole 200mg

Indications & Uses

Vaginal Candidiasis, Brochopulmonary Infections, Candiduria, Tinea Pedis, Corposis, Cruris, Versicolor

MAGMA -VIT

SYRUP
200ml

Composition

L-Iysine HCI 25mg + Vitamin B1 2.5mg + Vitamin B2 2.5mg + Vitamin B6 0.75mg + D-panthenol 3mg +Niacinamide 25mg + Mecobalamin 2mcg/10ml

Indications & Uses

Sub-optimal Growth, Poor Weight Gain, Malnutrition, Prolonged Illness

LYCOVERVE GOLD

SYRUP
225ml

Composition

Each 10ml Contains: Lycopene 6% 1000mcg + Vitamin A Palmitate 2500 IU + Vitamin E 10 IU + Ascorbic Acid 50mg + Selenium (as Sodium Selenate) 35mcg + Zinc (As Zinc Gluconate) 3mg + Manganese (as Manganese Gluconate) 2mg + Iodine ( As Potassium Iodine) 100mcg + Copper (As Copper Sulphate0 500mcg + Thiamine HCI 2mg + Riboflavine 3mg + Pyridoxine HCI 1.5mg

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

CAROVI

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Antioxidant, Multivitamin & Multiminerals

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

WEETE

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Vitamin E (Natural) 400 IU + Wheat Germ Oil 100mg + Omega 3 Fatty Acids 30mg

Indications & Uses

Ulcerative colitis, Metabolic Syndrome, Rheumatoid Arthritis, Type-2 Diabetes, Cardiovascular Diseases

CAROVI-4G

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Omega 3 Fatty Acid + Ginseng Extract + Ginkgo Bilaba Extract + Grape Seed Extract + Ginseng Extract + Multimineral + Multivitamin + Antioxidants + Trace Elements

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

CAROVI G

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

LYCOVERVE PLUS

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Each SG Contains Lycopene 6% 2000 IU + Vitamin A 2500 IU + Vitamin E Acetate 10 IU + Vitamin C 50 mg + Zinc sulphate Monohydrate 27.45mg + Selenium Dioxide 70mcg

Indications & Uses

Idiopathic Male Infertility, Pre-eclampsia, Prostate Cancer, Cardiovascular Diseases, Diabetes Mellitus

CEFTAR-200 LB

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Lactic Acid Bacilus 2.5 billion spores

Indications & Uses

Otitis Media, Pharyngitis & Tonsillitis, Uncomplicated Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis, Enteric Fever

CEFTAR-CV-325

TABLETS (Alu-Alu)
10X1X6

Composition

Cefixime 200mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Urinary Tract Infections, Skin & Skin Structure Infections

AISIMOX – CLAV 625

TABLETS (Alu-Alu)
10X1X7

Composition

Amoxycillin 500mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Community Acquired Pneumonia, Gynaecological Infections, Acute Exacerbations of Chronic Bronchitis, Skin and Soft Tissue Infections

ROFLOX – O

TABLETS (Blister)
20X10

Composition

Ofloxacin 200mg + Ornidazole 500mg

Indications & Uses

Surgical ions, Diarrheas of Mixed Etiology, Gynaecological Infections, Orofacial and Dental Infections

NTILEVO

TABLETS
10X10

Composition

Levofloxacin 500mg

Indications & Uses

Acute Bacterial Sinusitis, Acute Bacterial Exacerbations of Chronic Bronchitis, Skin & Skin Structure Infections, Chronic Bacterial Prostatitis, Urinary Tract Infections

ROFLOX – O

TABLETS (Alu-Alu)
20X10

Composition

Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

CEFTAR – O

TABLETS (Alu-Alu)
10X1X10

Composition

Cefixime 200mg + Ofloxacin 200mg

Indications & Uses

RTIs, Otitis Media, Sinustis, UTIs, Typhoid

AISIMOX – CLAV – 1.2

INJECTIONS
1.2g

Composition

Amoxycillin 1000mg + Potassium Clavulanate 200mg + WFI

Indications & Uses

Community Acquired Pneumonia, Gynaecological Infections, Upper Respiratory Tract Infections, Skin and Soft Tissue Infections, Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis

XC – SB 1.5

INJECTIONS
1.5g

Composition

Ceftriaxone 1000mg + Sulbactam 500mg + WFI

Indications & Uses

Gynaecological Infections, Lower Respiratory Tract Infections, Intra-abdominal Infections with Aerobic Organisms, Surgical Prophylaxis

FOPER-SB 1.5

INJECTIONS
1.5gm

Composition

Cefaperazone 1000mg + Sulbactam 500mg +WFI

Indications & Uses

Peritonitis, Bacterial Simusitis, Cholecystitis, Meningitis

M-HAWK

INJECTIONS
1gm

Composition

Meropenem 1gm + WFI

Indications & Uses

Complicated Intra-abdominal Infection (cIAI), Complicated Skin & Skin Structure Infections (cSSSI), Bacterial Meningitis, Noscocomial Pneumonia

PTZ-4.5

INJECTIONS
4.5gm

Composition

Piperacillin 4000mg + Tazobactam 500mg + WFI

Indications & Uses

Intra-abdominal Infections, Complicated Urinary Tract Infections, Febrile Neutropenia, Lower Respiratory Tract Infections

OXIME-200

TABLETS (Alu-Alu)
10X1X6

Composition

Cefpodoxime Proxetil 200mg

Indications & Uses

Pharyngitis, CAP, Tonsilitis

KHAASHNIL

SYRUP
100ml

Composition

Ambroxol HCI 15mg + Guaiphensin 50mg + Terbutaline Sulphate 1.5mg + Mentholated Base/5ml

Indications & Uses

Bronchitis, Productive Cough, Emphysema, Bronchial Asthma

KHAASHNIL – BR

SYRUP
100ml

Composition

Terbutaline Sulphate 2.5mg + Bromhexine HCI 8mg + Guaiphenesin 100mg + Methalated Base/5ml

Indications & Uses

Acute Cough, Abnormal Mucus Secretion, Productive Cough

ENYPHIL

SYRUP
100ml

Composition

Dextromethorphan Hydrobromide 10mg + Phenylpherine 5 mg + Cetrizine 5mg + Mentholated Base/5ml

Indications & Uses

Commom Cold and Flu, Nasal Congestion, Sore Throat

LEVKAST

TABLETS (Alu-Alu)
20X10

Composition

Levocetirizine 5mg + Montelukast 10mg

Indications & Uses

Allergic Rhinitis, Nasal Congestion, Asthma

AISLET

TABLETS (Alu-Alu)
20X10

Composition

Levocetirizine 5mg

Indications & Uses

Chronic Idiopathic Urticaria (CIU), Seasonal Allergic Rhinitis (SAR), Perennial Allergic Rhinitis (PAR)

Arrange A Callback
[]
1 Step 1
Full Name
Telephone
Departmentyour full name
Postal Address
Message
0 /
Previous
Next
Shopping Basket